| 12345678910111213141516 |
- using Abp.Authorization;
- using Abp.Runtime.Session;
- using VberAdmin.BaseSystem.Configuration.Dto;
- using VberAdmin.DomainService.Settings;
- namespace VberAdmin.BaseSystem.Configuration;
- [AbpAuthorize]
- public class ConfigurationAppService : VberAdminAppServiceBase, IConfigurationAppService
- {
- public async Task ChangeUiTheme(ChangeUiThemeInput input)
- {
- await SettingManager.ChangeSettingForUserAsync(AbpSession.ToUserIdentifier(), SettingNames.UiTheme, input.Theme);
- }
- }
|