2023-06-13 17:15:20 -04:00
|
|
|
import { AsyncRoute, AsyncRouteType } from 'components/router/AsyncRoute';
|
2023-04-13 00:47:34 +03:00
|
|
|
|
|
|
|
export const ASYNC_ADMIN_ROUTES: AsyncRoute[] = [
|
2023-06-13 17:15:20 -04:00
|
|
|
{ path: 'dashboard/activity', page: 'dashboard/activity', type: AsyncRouteType.Experimental },
|
2023-05-19 11:43:25 -04:00
|
|
|
{ path: 'notificationsettings.html', page: 'dashboard/notifications' },
|
2023-04-13 00:47:34 +03:00
|
|
|
{ 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' }
|
|
|
|
];
|