Member Junction
    Preparing search index...

    Result of checking a user's access to an application

    interface AppAccessResult {
        app?: BaseApplication;
        appId?: string;
        appName: string;
        canInstall?: boolean;
        message: string;
        status:
            | "not_found"
            | "accessible"
            | "inactive"
            | "not_installed"
            | "disabled"
            | "not_authorized";
    }
    Index

    Properties

    The BaseApplication instance (if accessible)

    appId?: string

    ID of the application (if found)

    appName: string

    Name of the application (if found)

    canInstall?: boolean

    Whether the user can install/enable this app

    message: string

    Human-readable message describing the access status

    status:
        | "not_found"
        | "accessible"
        | "inactive"
        | "not_installed"
        | "disabled"
        | "not_authorized"

    Status of the access check