do not allow empty admin password during wizard

This commit is contained in:
cvium 2023-05-26 21:50:51 +02:00
parent 57d8452e2a
commit 29ef02af9a

View file

@ -131,6 +131,10 @@ public class StartupController : BaseJellyfinApiController
public async Task<ActionResult> UpdateStartupUser([FromBody] StartupUserDto startupUserDto)
{
var user = _userManager.Users.First();
if (string.IsNullOrWhiteSpace(startupUserDto.Password))
{
return BadRequest("Password must not be empty");
}
if (startupUserDto.Name is not null)
{