2019-10-08 23:41:19 +01:00
|
|
|
namespace Yavsc.Server
|
2016-05-17 18:22:18 +02:00
|
|
|
{
|
|
|
|
|
|
2019-10-08 23:41:19 +01:00
|
|
|
public static class ServerConstants
|
2016-05-17 18:22:18 +02:00
|
|
|
{
|
2019-01-30 11:14:32 +00:00
|
|
|
|
2019-10-08 23:41:19 +01:00
|
|
|
public const string ApplicationName = "Yavsc";
|
|
|
|
|
public const string CompanyInfoUrl = " https://societeinfo.com/app/rest/api/v1/company/json?registration_number={0}&key={1}";
|
2019-01-30 11:14:32 +00:00
|
|
|
|
2017-03-29 10:38:37 +02:00
|
|
|
|
2016-05-17 18:22:18 +02:00
|
|
|
private static readonly string[] GoogleScopes = { "openid", "profile", "email" };
|
|
|
|
|
public static readonly string[] GoogleCalendarScopes =
|
|
|
|
|
{ "openid", "profile", "email", "https://www.googleapis.com/auth/calendar" };
|
2017-01-13 16:31:40 +01:00
|
|
|
|
2019-06-21 09:20:13 +01:00
|
|
|
|
2019-05-08 16:33:29 +01:00
|
|
|
}
|
2016-05-17 18:22:18 +02:00
|
|
|
}
|