// ========================================================================== // Constants.cs // Squidex Headless CMS // ========================================================================== // Copyright (c) Squidex Group // All rights reserved. // ========================================================================== namespace Squidex.Config { public static class Constants { public static readonly string SecurityDefinition = "squidex-oauth-auth"; public static readonly string ApiPrefix = "/api"; public static readonly string ApiScope = "squidex-api"; public static readonly string RoleScope = "role"; public static readonly string ProfileScope = "squidex-profile"; public static readonly string FrontendClient = "squidex-frontend"; public static readonly string IdentityPrefix = "/identity-server"; } }