Skip to content
Snippets Groups Projects
Commit 8b16b0fc authored by dakkar's avatar dakkar
Browse files

merge: Hide Following Feed from guest users/logged out users and also don't...

merge: Hide Following Feed from guest users/logged out users and also don't show the button for migrated accounts (!721)

View MR for information: TransFem-org/Sharkey!721



Closes #787

Approved-by: default avatarAmber Null <puppygirlhornyposting@gmail.com>
Approved-by: default avatardakkar <dakkar@thenautilus.net>
parents 4da262d9 9daecc27
No related branches found
No related tags found
No related merge requests found
......@@ -71,6 +71,7 @@ export const navbarItemDef = reactive({
following: {
title: i18n.ts.following,
icon: 'ph-user-check ph-bold ph-lg',
show: computed(() => $i != null && !$i.movedTo),
to: '/following-feed',
},
lists: {
......
......@@ -229,10 +229,11 @@ const routes: RouteDef[] = [{
}, {
path: '/following-feed',
component: page(() => import('@/pages/following-feed.vue')),
hash: 'initialTab',
loginRequired: true,
}, {
path: '/following-feed/:userId',
component: page(() => import('@/pages/user/recent-notes.vue')),
loginRequired: true,
}, {
path: '/search',
component: page(() => import('@/pages/search.vue')),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment