1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Fix add user route

This commit is contained in:
Bill Thornton 2023-10-03 13:15:52 -04:00
parent 189904256d
commit 62f9e7581a
2 changed files with 3 additions and 3 deletions

View file

@ -3,10 +3,10 @@ import type { AsyncRoute } from 'components/router/AsyncRoute';
export const ASYNC_ADMIN_ROUTES: AsyncRoute[] = [
{ path: 'activity' },
{ path: 'notifications' },
{ path: 'users/new' },
{ path: 'users' },
{ path: 'users/profile' },
{ path: 'users/access' },
{ path: 'users/add' },
{ path: 'users/parentalcontrol' },
{ path: 'users/password' }
{ path: 'users/password' },
{ path: 'users/profile' }
];