AboutSupportDeveloper GuideVersion 47.154.100.2
OpenFin JavaScript API
    Preparing search index...

    Interface ContentRedirect

    Restrict redirects to URLs that match an allowed pattern. In the lack of an allowlist, redirects to URLs that match a denied pattern would be prohibited. See here for more details.

    Superseded by DomainSettingsRule.content. If DomainSettings.default includes a content setting, this setting will be ignored.

    interface ContentRedirect {
        allowlist?: string[];
        blacklist?: string[];
        denylist?: string[];
        matchOptions?: RuleMatchOptions;
        whitelist?: string[];
    }
    Index
    allowlist?: string[]

    Allowed URLs for navigation.

    blacklist?: string[]

    Use denylist property instead.

    denylist?: string[]

    Forbidden URLs for navigation.

    matchOptions?: RuleMatchOptions

    Options to use when comparing URIs to the allowlist and denylist patterns.

    whitelist?: string[]

    Use allowlist property instead.