ts-mailcow-api
    Preparing search index...

    Interface CorsAttributes

    API-wide CORS attributes.

    interface CorsAttributes {
        allowed_methods?: CorsAllowedMethod[];
        allowed_origins?: string[];
    }
    Index
    allowed_methods?: CorsAllowedMethod[]

    HTTP methods allowed for cross-origin requests.

    allowed_origins?: string[]

    Origins allowed to make cross-origin requests to the API. Use '*' to allow any origin.