Add experimental app routes

This commit is contained in:
grafixeyehero 2023-04-13 00:47:34 +03:00 committed by Bill Thornton
parent 12c1ae3590
commit fc0f0694db
8 changed files with 440 additions and 2 deletions

View file

@ -0,0 +1,10 @@
import { AsyncRoute } from '../../AsyncRoute';
export const ASYNC_ADMIN_ROUTES: AsyncRoute[] = [
{ path: 'usernew.html', page: 'user/usernew' },
{ path: 'userprofiles.html', page: 'user/userprofiles' },
{ path: 'useredit.html', page: 'user/useredit' },
{ path: 'userlibraryaccess.html', page: 'user/userlibraryaccess' },
{ path: 'userparentalcontrol.html', page: 'user/userparentalcontrol' },
{ path: 'userpassword.html', page: 'user/userpassword' }
];