Implemented hasclaim directive
All checks were successful
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good

This commit is contained in:
Willem Dantuma
2020-06-23 17:51:47 +02:00
parent 253b3d3c90
commit f9d0e2aee0
4 changed files with 46 additions and 6 deletions

View File

@@ -1,5 +1,6 @@
export interface IUser {
code?: string;
name?: string;
email?: string;
}
export interface IUser {
code?: string;
name?: string;
email?: string;
claims: any;
}