Interface EntityAccessRules

interface EntityAccessRules {
    create: Promise<boolean>;
    read: Promise<boolean>;
    update: Promise<boolean>;
}

Properties

Properties

create: Promise<boolean>
read: Promise<boolean>
update: Promise<boolean>