interface SpaceSettings {
    _links: GenericLinks;
    editor?: {
        blogpost: string;
        default: string;
        page: string;
    } & {
        [key: string]: unknown;
    };
    routeOverrideEnabled: boolean;
    spaceKey?: string;
}

Hierarchy

  • Record<string, unknown>
    • SpaceSettings

Properties

_links: GenericLinks
editor?: {
    blogpost: string;
    default: string;
    page: string;
} & {
    [key: string]: unknown;
}
routeOverrideEnabled: boolean

Defines whether an override for the space home should be used. This is used in conjunction with a space theme provided by an app. For example, if this property is set to true, a theme can display a page other than the space homepage when users visit the root URL for a space. This property allows apps to provide content-only theming without overriding the space home.

spaceKey?: string