示例#1
0
        public async Task <IActionResult> GetUserNotificationSettingsAsync()
        {
            var userId = GetCurrentSaasUserId();
            var res    = await _notificationSettingsService.GetUserNotificationSettingsAsync(new UserRequest(userId));

            return(Ok(res));
        }