Exemplo n.º 1
0
        // GET: Settings
        public async Task <IActionResult> Index()
        {
            var vm = new SettingsVm
            {
                Profile = await _userAccountManager.GetUserProfile(),
                NotificationSettings = await _userAccountManager.GetNotificationSettings(),
                IssueSettings        = await _userAccountManager.GetIssueSettingsForUser()
            };

            return(View(vm));
        }