aboutsummaryrefslogtreecommitdiff
path: root/src/main.js
diff options
context:
space:
mode:
authorlambadalambda <gitgud@rogerbraun.net>2017-08-19 03:32:44 -0400
committerlambadalambda <gitgud@rogerbraun.net>2017-08-19 03:32:44 -0400
commitfb3408d64f361417c31f7fde4d206eab3e17acae (patch)
treef109e7b71cd4ca358d4840074318ece3a11b4f46 /src/main.js
parent0c4f076765cf13c3e0d82501797e22a26def22ee (diff)
parent9503b8fa41b9f6e3c500af411b29ee1c27844253 (diff)
Merge branch 'feature/profile-editing' into 'develop'
Feature/profile editing See merge request !95
Diffstat (limited to 'src/main.js')
-rw-r--r--src/main.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main.js b/src/main.js
index 4b7891ed..8d3a6775 100644
--- a/src/main.js
+++ b/src/main.js
@@ -10,6 +10,7 @@ import Mentions from './components/mentions/mentions.vue'
import UserProfile from './components/user_profile/user_profile.vue'
import Settings from './components/settings/settings.vue'
import Registration from './components/registration/registration.vue'
+import UserSettings from './components/user_settings/user_settings.vue'
import statusesModule from './modules/statuses.js'
import usersModule from './modules/users.js'
@@ -62,7 +63,8 @@ const routes = [
{ name: 'user-profile', path: '/users/:id', component: UserProfile },
{ name: 'mentions', path: '/:username/mentions', component: Mentions },
{ name: 'settings', path: '/settings', component: Settings },
- { name: 'registration', path: '/registration', component: Registration }
+ { name: 'registration', path: '/registration', component: Registration },
+ { name: 'user-settings', path: '/user-settings', component: UserSettings }
]
const router = new VueRouter({