AutoBE
    Preparing search index...

    Role-grant effect: the operation assigns or revokes a business role (grade) for another user of targetActor.

    interface IAuthorizationRoleGrant {
        roles: (string & CamelCasePattern)[];
        targetActor: string & CamelCasePattern & MinLength<1>;
        type: "roleGrant";
    }
    Index

    Properties

    roles: (string & CamelCasePattern)[]

    Roles granted or revoked by this operation — always at least the role(s) the grant concerns. Each entry MUST be a role declared on the target actor's analyzed roles (AutoBeAnalyze.IActorRole).

    targetActor: string & CamelCasePattern & MinLength<1>

    Actor whose grade is changed by this operation. MUST match a database user type and an analyzed actor (AutoBeAnalyze.IActor).

    type: "roleGrant"