Store available authentication methods in ngrx/store

This commit is contained in:
Julius Gruber
2019-08-05 14:45:57 +02:00
parent 7a3155f2b4
commit c8f4db618e
5 changed files with 67 additions and 16 deletions

View File

@@ -1,4 +1,9 @@
export class AuthMethodModel {
authMethodName: string;
location?: string;
constructor(authMethodName: string, location?: string) {
this.authMethodName = authMethodName;
this.location = location;
}
}