Added password as an API field to the Startup/User Service

This commit is contained in:
Justin Suess 2019-01-28 17:25:37 -06:00
parent a05d803d4c
commit f06b9a14f3

View File

@ -8,6 +8,7 @@ using MediaBrowser.Controller.Library;
using MediaBrowser.Controller.MediaEncoding;
using MediaBrowser.Controller.Net;
using MediaBrowser.Model.Services;
using MediaBrowser.Controller.Entities;
namespace MediaBrowser.Api
{
@ -102,7 +103,8 @@ namespace MediaBrowser.Api
return new StartupUser
{
Name = user.Name,
ConnectUserName = user.ConnectUserName
ConnectUserName = user.ConnectUserName,
Password = user.Password
};
}
@ -111,7 +113,9 @@ namespace MediaBrowser.Api
var user = _userManager.Users.First();
user.Name = request.Name;
_userManager.UpdateUser(user);
await _userManager.ChangePassword(user, request.Password).ConfigureAwait(false);
var result = new UpdateStartupUserResult();
@ -130,6 +134,7 @@ namespace MediaBrowser.Api
{
public string Name { get; set; }
public string ConnectUserName { get; set; }
public string Password { get; set; }
}
public class UpdateStartupUserResult