AspNetBoilerplateVue.Configuration.ConfigurationAppService.ChangeUiTheme C# (CSharp) Method

ChangeUiTheme() public method

public ChangeUiTheme ( ChangeUiThemeInput input ) : Task
input ChangeUiThemeInput
return Task
        public async Task ChangeUiTheme(ChangeUiThemeInput input)
        {
            await SettingManager.ChangeSettingForUserAsync(AbpSession.ToUserIdentifier(), AppSettingNames.UiTheme, input.Theme);
        }
    }
ConfigurationAppService