Member Junction
    Preparing search index...

    Interface DashboardCategoryUserPermissions

    Represents the effective permissions a user has on a dashboard category

    interface DashboardCategoryUserPermissions {
        CanAddRemove: boolean;
        CanEdit: boolean;
        CanRead: boolean;
        CanShare: boolean;
        CategoryID: string;
        IsOwner: boolean;
        PermissionSource: "none" | "owner" | "direct";
    }
    Index

    Properties

    CanAddRemove: boolean

    Whether the user can add/remove dashboards in the category

    CanEdit: boolean

    Whether the user can modify dashboards in the category

    CanRead: boolean

    Whether the user can view dashboards in the category

    CanShare: boolean

    Whether the user can share the category with others

    CategoryID: string

    The category ID these permissions apply to

    IsOwner: boolean

    Whether the user is the owner of the category

    PermissionSource: "none" | "owner" | "direct"

    Source of the permission: 'owner', 'direct', or 'none'