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:

15 lines (12 loc) 366 B
import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { FormsModule } from '@angular/forms'; import { InnotecLogin } from './innoteclogin.component'; @NgModule({ imports: [ CommonModule, FormsModule ], declarations: [ InnotecLogin ], exports: [ InnotecLogin ] }) export class InnotecLoginModule {}