fix: avatar decoration role not working

Closes #150
This commit is contained in:
Marie 2023-12-22 11:51:43 +01:00
parent 5979a3f8d9
commit b71e5cf2fb
2 changed files with 5 additions and 1 deletions

View file

@ -307,6 +307,10 @@ export const routes = [{
}, {
path: '/channels',
component: page(() => import('./pages/channels.vue')),
}, {
path: '/avatar-decorations',
name: 'avatarDecorations',
component: page(() => import('./pages/avatar-decorations.vue')),
}, {
path: '/custom-emojis-manager',
component: page(() => import('./pages/custom-emojis-manager.vue')),

View file

@ -34,7 +34,7 @@ function toolsMenuItems(): MenuItem[] {
icon: 'ph-smiley ph-bold ph-lg',
} : undefined, ($i && ($i.isAdmin || $i.policies.canManageAvatarDecorations)) ? {
type: 'link',
to: '/admin/avatar-decorations',
to: '/avatar-decorations',
text: i18n.ts.manageAvatarDecorations,
icon: 'ph-sparkle ph-bold ph-lg',
} : undefined];