Release Polishing (#2325)

Co-authored-by: Robbie Davis <robbie@therobbiedavis.com>
This commit is contained in:
Joe Milazzo
2023-10-18 17:52:54 -05:00
committed by GitHub
parent 2d3a0c1eda
commit 8e85ba069c
28 changed files with 88 additions and 96 deletions
+1
View File
@@ -268,6 +268,7 @@ public class AccountController : BaseApiController
dto.RefreshToken = await _tokenService.CreateRefreshToken(user);
dto.KavitaVersion = (await _unitOfWork.SettingsRepository.GetSettingAsync(ServerSettingKey.InstallVersion))
.Value;
dto.Preferences = _mapper.Map<UserPreferencesDto>(user.UserPreferences);
return Ok(dto);
}