jellyfish-web/src/routes/experimentalAppRoutes/asyncRoutes/admin.ts

11 lines
478 B
TypeScript
Raw Normal View History

2023-04-13 00:47:34 +03:00
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' }
];