feat: use route provider and make all config public

pull/4377/head
Arman Ozak 5 years ago
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…
Cancel
Save