UNPKG

angular-firebase-authorizator

Version:

Beta version of authorizator for angular linked to firebase, it creates a model in firestore to assign permissions to users an roles, and creates a view to update this permissions

11 lines (10 loc) 232 B
import { PermissionObj } from './permission-obj'; export interface UserObj { id: string; data: { name: string; email: string; picture: string; permissions: PermissionObj[]; }; }