2020-05-13 14:06:11 +02:00
|
|
|
using zero.Core;
|
|
|
|
|
using zero.Core.Entities;
|
|
|
|
|
|
2020-05-13 16:27:20 +02:00
|
|
|
namespace zero.Web.Defaults
|
2020-05-13 14:06:11 +02:00
|
|
|
{
|
|
|
|
|
public class SystemSettings : SettingsGroup
|
|
|
|
|
{
|
|
|
|
|
public SystemSettings()
|
|
|
|
|
{
|
|
|
|
|
Name = "@settings.groups.system";
|
|
|
|
|
|
2020-10-05 13:50:23 +02:00
|
|
|
//AddInternal(Constants.Settings.Updates, "@settings.system.updates.name", "@settings.system.updates.text", "fth-check-circle");
|
2020-05-26 12:27:35 +02:00
|
|
|
AddInternal(Constants.Settings.Applications, "@settings.system.applications.name", "@settings.system.applications.text", "fth-layers");
|
|
|
|
|
AddInternal(Constants.Settings.Users, "@settings.system.users.name", "@settings.system.users.text", "fth-users");
|
2021-11-11 15:39:26 +01:00
|
|
|
AddInternal(Constants.Settings.Plugins, "@settings.system.plugins.name", "@settings.system.plugins.text", "fth-package");
|
2020-10-05 13:50:23 +02:00
|
|
|
//AddInternal(Constants.Settings.Logging, "@settings.system.logs.name", "@settings.system.logs.text", "fth-file-text");
|
2020-05-13 14:06:11 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|