1.0.6 • Published 7 years ago

mindgaze-auth v1.0.6

Weekly downloads
1
License
ISC
Repository
-
Last release
7 years ago

@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 {

} `