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) 426 B
import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { AuthProviders } from './authproviders.component'; import { SocialButtonLoginModule } from '../socialbuttonlogin/socialbuttonlogin.module'; @NgModule({ imports: [ CommonModule, SocialButtonLoginModule ], declarations: [ AuthProviders ], exports: [ AuthProviders ] }) export class AuthProvidersModule {}