Member Junction
    Preparing search index...

    Represents the effective permissions a user has on a dashboard

    interface DashboardUserPermissions {
        CanDelete: boolean;
        CanEdit: boolean;
        CanRead: boolean;
        CanShare: boolean;
        DashboardID: string;
        IsOwner: boolean;
        PermissionSource: "none" | "owner" | "direct" | "category";
    }
    Index

    Properties

    CanDelete: boolean

    Whether the user can delete the dashboard

    CanEdit: boolean

    Whether the user can modify the dashboard

    CanRead: boolean

    Whether the user can view the dashboard

    CanShare: boolean

    Whether the user can share the dashboard with others

    DashboardID: string

    The dashboard ID these permissions apply to

    IsOwner: boolean

    Whether the user is the owner of the dashboard

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

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