Class DeliveryApiSettings.AuthorizationCodeFlowSettings
Typed configuration options for the Authorization Code Flow settings for the Delivery API.
Inheritance
System.Object
Namespace: Umbraco.Cms.Core.Configuration.Models
Assembly: Umbraco.Core.dll
Syntax
public class AuthorizationCodeFlowSettings
Properties
View SourceEnabled
Gets or sets a value indicating whether Authorization Code Flow should be enabled for the Delivery API.
Declaration
public bool Enabled { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
LoginRedirectUrls
Gets or sets the URLs allowed to use as redirect targets after a successful login (session authorization).
Declaration
public Uri[] LoginRedirectUrls { get; set; }
Property Value
Type | Description |
---|---|
Uri[] | The URLs allowed as redirect targets. |
LogoutRedirectUrls
Gets or sets the URLs allowed to use as redirect targets after a successful logout (session termination).
Declaration
public Uri[] LogoutRedirectUrls { get; set; }
Property Value
Type | Description |
---|---|
Uri[] | The URLs allowed as redirect targets. |
Remarks
These are only required if logout is to be used.