Files
mixtape/zero.Web/Defaults/SystemSettings.cs
T
2021-11-11 15:39:26 +01:00

20 lines
865 B
C#

using zero.Core;
using zero.Core.Entities;
namespace zero.Web.Defaults
{
public class SystemSettings : SettingsGroup
{
public SystemSettings()
{
Name = "@settings.groups.system";
//AddInternal(Constants.Settings.Updates, "@settings.system.updates.name", "@settings.system.updates.text", "fth-check-circle");
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");
AddInternal(Constants.Settings.Plugins, "@settings.system.plugins.name", "@settings.system.plugins.text", "fth-package");
//AddInternal(Constants.Settings.Logging, "@settings.system.logs.name", "@settings.system.logs.text", "fth-file-text");
}
}
}