19 lines
790 B
C#
19 lines
790 B
C#
using System.IO;
|
|
|
|
namespace BaronSoftware.SSO
|
|
{
|
|
internal static class GlobalConfigs
|
|
{
|
|
|
|
internal static readonly string CenterTanant_UUID = "5530ca6e-c5e6-4bf0-84d6-76c6a8fb70ee";
|
|
internal static readonly string FamilyTanant_UUID = "038326b6-954a-48a7-a85f-efd83f62b82a";
|
|
|
|
/// <summary>OIDC Issuer. Discovery 문서는 {Authority}/.well-known/openid-configuration 입니다.</summary>
|
|
internal static string SsoUri = "https://sso.hmac.kr/oidc";
|
|
internal static string SsoDiscoveryUri => $"{SsoUri.TrimEnd('/')}/.well-known/openid-configuration";
|
|
|
|
public readonly static string RegPath = $@"HKEY_CURRENT_USER\Software\Baron\";
|
|
public static readonly string SsoFilePath = @$"{Path.GetTempPath()}\.baron\baronsso.dat";
|
|
}
|
|
}
|