mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
901 B
27 lines
901 B
// ==========================================================================
|
|
// 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";
|
|
}
|
|
}
|
|
|