aboutsummaryrefslogtreecommitdiff
path: root/src/boot/routes.js
diff options
context:
space:
mode:
authorHJ <30-hj@users.noreply.git.pleroma.social>2019-03-25 19:09:22 +0000
committerHJ <30-hj@users.noreply.git.pleroma.social>2019-03-25 19:09:22 +0000
commit3025532ecf6b728604d14af9bf218e96de0756ed (patch)
tree6ae4a91f593357bbbcae3109002dbd22122e1d02 /src/boot/routes.js
parent8522063b2c4a35f0926517a3b75376c81131dd79 (diff)
parent854d0e80512d2da80cd5153144698a5148da4aa6 (diff)
Merge branch 'develop' into 'mastoapi/public-tl'
# Conflicts: # src/services/api/api.service.js
Diffstat (limited to 'src/boot/routes.js')
-rw-r--r--src/boot/routes.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/boot/routes.js b/src/boot/routes.js
index cfbcb1fe..7e54a98b 100644
--- a/src/boot/routes.js
+++ b/src/boot/routes.js
@@ -13,7 +13,6 @@ import FollowRequests from 'components/follow_requests/follow_requests.vue'
import OAuthCallback from 'components/oauth_callback/oauth_callback.vue'
import UserSearch from 'components/user_search/user_search.vue'
import Notifications from 'components/notifications/notifications.vue'
-import UserPanel from 'components/user_panel/user_panel.vue'
import LoginForm from 'components/login_form/login_form.vue'
import ChatPanel from 'components/chat_panel/chat_panel.vue'
import WhoToFollow from 'components/who_to_follow/who_to_follow.vue'
@@ -43,7 +42,6 @@ export default (store) => {
{ name: 'friend-requests', path: '/friend-requests', component: FollowRequests },
{ name: 'user-settings', path: '/user-settings', component: UserSettings },
{ name: 'notifications', path: '/:username/notifications', component: Notifications },
- { name: 'new-status', path: '/:username/new-status', component: UserPanel },
{ name: 'login', path: '/login', component: LoginForm },
{ name: 'chat', path: '/chat', component: ChatPanel, props: () => ({ floating: false }) },
{ name: 'oauth-callback', path: '/oauth-callback', component: OAuthCallback, props: (route) => ({ code: route.query.code }) },