2020-03-24 23:09:29 +01:00
|
|
|
namespace zero.Core
|
2020-03-22 14:18:34 +01:00
|
|
|
{
|
|
|
|
|
public static class Constants
|
|
|
|
|
{
|
2020-04-10 13:35:39 +02:00
|
|
|
public static class Auth
|
|
|
|
|
{
|
|
|
|
|
public const string Scheme = "zeroCookies";
|
|
|
|
|
|
|
|
|
|
public const string CookieName = "zero.session";
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-24 20:30:03 +01:00
|
|
|
public static class Database
|
|
|
|
|
{
|
|
|
|
|
public const string SharedAppId = "shared";
|
2020-04-03 16:45:47 +02:00
|
|
|
|
|
|
|
|
public const string CollectionPrefix = "zero.";
|
2020-03-24 20:30:03 +01:00
|
|
|
}
|
|
|
|
|
|
2020-03-22 14:18:34 +01:00
|
|
|
public static class Sections
|
|
|
|
|
{
|
|
|
|
|
public const string Dashboard = "dashboard";
|
|
|
|
|
|
|
|
|
|
public const string Pages = "pages";
|
|
|
|
|
|
|
|
|
|
public const string Lists = "lists";
|
|
|
|
|
|
|
|
|
|
public const string Media = "media";
|
|
|
|
|
|
|
|
|
|
public const string Settings = "settings";
|
|
|
|
|
}
|
2020-04-08 00:22:04 +02:00
|
|
|
|
|
|
|
|
public static class SettingsAreas
|
|
|
|
|
{
|
|
|
|
|
public const string Updates = "updates";
|
|
|
|
|
|
|
|
|
|
public const string Applications = "applications";
|
|
|
|
|
|
|
|
|
|
public const string Users = "users";
|
|
|
|
|
|
|
|
|
|
public const string Translations = "translations";
|
|
|
|
|
|
|
|
|
|
public const string Countries = "countries";
|
|
|
|
|
|
|
|
|
|
public const string Logging = "logs";
|
|
|
|
|
}
|
2020-03-22 14:18:34 +01:00
|
|
|
}
|
|
|
|
|
}
|