mirror of https://github.com/abpframework/abp.git
committed by
GitHub
18 changed files with 23 additions and 178 deletions
@ -1,17 +0,0 @@ |
|||
import { ABP, eLayoutType } from '@abp/ng.core'; |
|||
|
|||
/** |
|||
* |
|||
* @deprecated since version 0.9 |
|||
*/ |
|||
export const ACCOUNT_ROUTES = { |
|||
routes: [ |
|||
{ |
|||
name: 'Account', |
|||
path: 'account', |
|||
invisible: true, |
|||
layout: eLayoutType.application, |
|||
children: [{ path: 'login', name: 'Login', order: 1 }, { path: 'register', name: 'Register', order: 2 }], |
|||
}, |
|||
] as ABP.FullRoute[], |
|||
}; |
|||
@ -1,6 +1,5 @@ |
|||
export * from './lib/account.module'; |
|||
export * from './lib/components'; |
|||
export * from './lib/constants/routes'; |
|||
export * from './lib/tokens'; |
|||
export * from './lib/models'; |
|||
export * from './lib/services'; |
|||
|
|||
@ -1,28 +0,0 @@ |
|||
import { eLayoutType, ABP } from '@abp/ng.core'; |
|||
|
|||
/** |
|||
* |
|||
* @deprecated |
|||
*/ |
|||
export const IDENTITY_ROUTES = { |
|||
routes: [ |
|||
{ |
|||
name: 'AbpUiNavigation::Menu:Administration', |
|||
path: '', |
|||
order: 1, |
|||
wrapper: true, |
|||
}, |
|||
{ |
|||
name: 'AbpIdentity::Menu:IdentityManagement', |
|||
path: 'identity', |
|||
order: 1, |
|||
parentName: 'AbpUiNavigation::Menu:Administration', |
|||
layout: eLayoutType.application, |
|||
iconClass: 'fa fa-id-card-o', |
|||
children: [ |
|||
{ path: 'roles', name: 'AbpIdentity::Roles', order: 2, requiredPolicy: 'AbpIdentity.Roles' }, |
|||
{ path: 'users', name: 'AbpIdentity::Users', order: 1, requiredPolicy: 'AbpIdentity.Users' }, |
|||
], |
|||
}, |
|||
] as ABP.FullRoute[], |
|||
}; |
|||
@ -1 +0,0 @@ |
|||
export * from './routes'; |
|||
@ -1,25 +0,0 @@ |
|||
import { ABP, eLayoutType } from '@abp/ng.core'; |
|||
|
|||
/** |
|||
* |
|||
* @deprecated since version 0.9.0 |
|||
*/ |
|||
export const TENANT_MANAGEMENT_ROUTES = { |
|||
routes: [ |
|||
{ |
|||
name: 'AbpTenantManagement::Menu:TenantManagement', |
|||
path: 'tenant-management', |
|||
parentName: 'AbpUiNavigation::Menu:Administration', |
|||
layout: eLayoutType.application, |
|||
iconClass: 'fa fa-users', |
|||
children: [ |
|||
{ |
|||
path: 'tenants', |
|||
name: 'AbpTenantManagement::Tenants', |
|||
order: 1, |
|||
requiredPolicy: 'AbpTenantManagement.Tenants', |
|||
}, |
|||
], |
|||
}, |
|||
] as ABP.FullRoute[], |
|||
}; |
|||
@ -1,7 +1,6 @@ |
|||
export * from './lib/tenant-management.module'; |
|||
export * from './lib/actions'; |
|||
export * from './lib/components'; |
|||
export * from './lib/constants'; |
|||
export * from './lib/models'; |
|||
export * from './lib/services'; |
|||
export * from './lib/states'; |
|||
|
|||
Loading…
Reference in new issue