2020-05-11 15:34:47 +02:00
|
|
|
using zero.Core.Api;
|
2020-04-16 12:56:17 +02:00
|
|
|
using zero.Core.Identity;
|
2020-04-08 00:22:04 +02:00
|
|
|
|
|
|
|
|
namespace zero.Web.Controllers
|
|
|
|
|
{
|
2020-04-16 12:56:17 +02:00
|
|
|
[ZeroAuthorize(Permissions.Sections.Settings, PermissionsValue.Read)]
|
2020-04-08 00:22:04 +02:00
|
|
|
public class SettingsController : BackofficeController
|
|
|
|
|
{
|
2020-05-11 15:34:47 +02:00
|
|
|
ISettingsApi Api;
|
2020-04-08 00:22:04 +02:00
|
|
|
|
2020-05-11 15:34:47 +02:00
|
|
|
public SettingsController(ISettingsApi api)
|
2020-04-08 00:22:04 +02:00
|
|
|
{
|
|
|
|
|
Api = api;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|