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

12 lines (11 loc) 206 B
export interface PermissionObj { resource: string; operations: Operation[]; } export declare enum Operation { Create = 0, Read = 1, Update = 2, Delete = 3, Deny = 4 }