UNPKG

innotec-auth-plugin

Version:

The Innotec-Auth-Plugin is designed to handle all authentication processes for applications where's conntected to the innotec v2 infrastructure. Theses plugin provides different authentication processes:

17 lines (14 loc) 594 B
import { NgModule } from '@angular/core'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { CommonModule } from '@angular/common'; import { LoginField } from './loginfield.component'; import { AuthProvidersModule } from '../authproviders/authproviders.module'; import { InnotecLoginModule } from '../innoteclogin/innoteclogin.module'; @NgModule({ imports: [ CommonModule, AuthProvidersModule, InnotecLoginModule, BrowserAnimationsModule ], declarations: [ LoginField ], exports: [ LoginField ] }) export class LoginFieldModule {}