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:

14 lines (11 loc) 332 B
import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { SocialButtonLogin } from './socialbuttonlogin.component'; @NgModule({ imports: [ CommonModule ], declarations: [ SocialButtonLogin ], exports: [ SocialButtonLogin ] }) export class SocialButtonLoginModule {}