1.0.12 • Published 7 years ago
mindgaze-data-presenter v1.0.12
@Mindgaze Auth
This library helps Angular2 apps integrate with the SSO Mindgaze provides.
` import { AuthModule, AuthModuleParameters } from '@mindgaze/auth';
export const authModuleConfig = { authEndpoint: '', clientId: '', clientSecret: '', scope: '', userEndpoint: '' }
...
@NgModule({
imports:
AuthModule.forRootFactory(authModuleConfig),
,
// Directives
declarations: AppComponent ,
// Providers
providers: [
],
bootstrap: [ AppComponent ]
}) export class AppModule {
} `