Member Junction
    Preparing search index...

    Capability flags derived from a permission level. The mapping mirrors the gating rules from mockup 19:

    • Viewer: hide Add/Remove/Refresh/Edit/Share/Delete/Operations
    • Editor: hide Delete/Share
    • Owner: show everything Server-side enforcement remains the source of truth — this is a UX convenience so users don't see buttons they'll be rejected on.
    interface ListCapabilities {
        CanDelete: boolean;
        CanEdit: boolean;
        CanRead: boolean;
        CanRefresh: boolean;
        CanRunOperations: boolean;
        CanShare: boolean;
    }
    Index

    Properties

    CanDelete: boolean
    CanEdit: boolean
    CanRead: boolean
    CanRefresh: boolean
    CanRunOperations: boolean
    CanShare: boolean