mirror of https://github.com/abpframework/abp
parent
164895f8c2
commit
e0a3764a35
@ -0,0 +1,12 @@
|
|||||||
|
import { ModuleWithProviders, NgModule } from '@angular/core';
|
||||||
|
import { IDENTITY_ROUTE_PROVIDERS } from './providers/route.provider';
|
||||||
|
|
||||||
|
@NgModule()
|
||||||
|
export class IdentityConfigModule {
|
||||||
|
static forRoot(): ModuleWithProviders<IdentityConfigModule> {
|
||||||
|
return {
|
||||||
|
ngModule: IdentityConfigModule,
|
||||||
|
providers: [IDENTITY_ROUTE_PROVIDERS],
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,3 @@
|
|||||||
|
export * from './enums';
|
||||||
|
export * from './identity-config.module';
|
||||||
|
export * from './providers';
|
Loading…
Reference in new issue