コード例 #1
0
        public async Task <IActionResult> UpdateMediaProfile(MediaProfileDto mediaProfile)
        {
            var userId             = GetUserId();
            var updatedUserInfoDto = await _userInformationService.UpdateMediaProfile(userId, mediaProfile);

            await _unitOfWork.Commit();

            return(Ok(updatedUserInfoDto));
        }