ViewsConfig

Configuration for saved views.

Definition

export interface ViewsConfig {
    /**
     * Unique ID for the list, used to persist custom views for the user.
     */
    listId: string;

    /**
     * Default list of views available to all users.
     */
    defaultViews: View[];

    /**
     * If true, allows the logged-in user to manage their own custom views.
     */
    allowToMangeCustomViews?: boolean;

    /**
     * ID of the default view to be selected.
     */
    defaultviewId?: string;
}

Usage

Last updated