-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathConstants.cs
33 lines (23 loc) · 1.76 KB
/
Constants.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
namespace Umbraco.Cms.Integrations.SEO.GoogleSearchConsole.URLInspectionTool
{
public class Constants
{
public const string TokenDbKey = "Umbraco.Cms.Integrations.GoogleSearchConsole.URLInspectionToolTokenDbKey";
public const string RefreshTokenDbKey =
"Umbraco.Cms.Integrations.GoogleSearchConsole.URLInspectionToolRefreshTokenDbKey";
public static class Configuration
{
public const string Settings = "Umbraco:Cms:Integrations:SEO:GoogleSearchConsole:Settings";
public const string OAuthSettings = "Umbraco:Cms:Integrations:SEO:GoogleSearchConsole:OAuthSettings";
public const string UmbracoCmsIntegrationsSeoGoogleSearchConsoleInspectUrlKey = "Umbraco.Cms.Integrations.SEO.GoogleSearchConsole.InspectUrl";
public const string UmbracoCmsIntegrationsSeoGoogleSearchConsoleUseUmbracoAuthorizationKey =
"Umbraco.Cms.Integrations.SEO.GoogleSearchConsole.UseUmbracoAuthorization";
public const string UmbracoCmsIntegrationsSeoGoogleSearchConsoleClientIdKey = "Umbraco.Cms.Integrations.SEO.GoogleSearchConsole.ClientId";
public const string UmbracoCmsIntegrationsSeoGoogleSearchConsoleClientSecretKey = "Umbraco.Cms.Integrations.SEO.GoogleSearchConsole.ClientSecret";
public const string UmbracoCmsIntegrationsSeoGoogleSearchConsoleRedirectUriKey = "Umbraco.Cms.Integrations.SEO.GoogleSearchConsole.RedirectUri";
public const string UmbracoCmsIntegrationsSeoGoogleSearchConsoleScopesKey = "Umbraco.Cms.Integrations.SEO.GoogleSearchConsole.Scopes";
public const string UmbracoCmsIntegrationsSeoGoogleSearchConsoleTokenEndpointKey = "Umbraco.Cms.Integrations.SEO.GoogleSearchConsole.TokenEndpoint";
}
}
}