@@ -32,7 +32,6 @@ export default {
'~/plugins/vue-axios',
'~/plugins/buefy',
'~/plugins/v-clipboard',
- '~/plugins/vue-analytics',
'~/plugins/vue-isyourpasswordsafe',
'~/plugins/vue-timeago'
],
@@ -64,7 +64,6 @@
"sharp": "^0.21.3",
"sqlite3": "^4.0.6",
"v-clipboard": "^2.2.1",
- "vue-analytics": "^5.16.2",
"vue-axios": "^2.1.4",
"vue-isyourpasswordsafe": "^1.0.2",
"vue-plyr": "^5.1.0",
@@ -25,7 +25,7 @@ class linkEditPOST extends Route {
enableDownload: enableDownload || false,
expiresAt // This one should be null if not supplied
});
- return res.json({ message: 'Editing the link was successfully' });
+ return res.json({ message: 'Editing the link was successfull' });
} catch (error) {
log.error(error);
return res.json({ message: 'There was a problem editing the link' });
@@ -23,13 +23,6 @@
import Navbar from '~/components/navbar/Navbar.vue';
export default {
- components: { Navbar },
- mounted() {
- this.$ga.page({
- page: '/404',
- title: 'Not Found',
- location: window.location.href
- });
- }
+ components: { Navbar }
};
</script>
@@ -130,11 +130,6 @@ export default {
this.$toast.open(`Error code ${this.error}`, true, 3000);
}
*/
- page: `/a/${this.$route.params.identifier}`,
- title: `Album | ${this.name}`,
@@ -64,7 +64,7 @@
</div>
<b-field label="Api key"
- message="This API key lets you use the service from other apps?"
+ message="This API key lets you use the service from other apps"
horizontal>
<b-input v-model="user.apiKey"
expanded />
@@ -102,11 +102,6 @@ export default {
return { title: 'Account' };
},
mounted() {
- page: '/dashboard/account',
- title: 'Settings',
this.getUserSetttings();
methods: {
@@ -299,11 +299,6 @@ export default {
this.getAlbums();
- page: '/dashboard/albums',
- title: 'Albums',
async linkOptionsChanged(link) {
@@ -83,11 +83,6 @@ export default {
this.getFiles();
- page: '/dashboard',
- title: 'Dashboard',
isAlbumSelected(id) {
@@ -146,12 +146,6 @@ export default {
return { title: 'Settings' };
- page: '/dashboard/settings',
-
this.getSettings();
@@ -222,11 +222,6 @@ export default {
this.getUsers();
- page: '/dashboard/users',
- title: 'Users',
async getUsers() {
@@ -103,13 +103,6 @@ export default {
config() {
return this.$store.state.config;
- },
- page: '/',
- title: 'Home',
@@ -94,13 +94,6 @@ export default {
metaInfo() {
return { title: 'Login' };
- page: '/login',
- title: 'Login',
login() {
if (this.isLoading) return;
@@ -71,13 +71,6 @@ export default {
return { title: 'Register' };
- page: '/register',
- title: 'Register',
register() {
@@ -1,12 +0,0 @@
-import Vue from 'vue';
-import VueAnalytics from 'vue-analytics';
-const isProduction = process.env.NODE_ENV === 'production';
-Vue.use(VueAnalytics, {
- id: 'UA-000000000-0',
- debug: {
- enabled: !isProduction,
- sendHitTask: isProduction
-});