Bug squashing.

This commit is contained in:
Steven Hildreth 2019-01-20 11:11:41 -06:00
parent aea5afead7
commit b6c18c6245
2 changed files with 4 additions and 1 deletions

View file

@ -104,6 +104,7 @@ namespace Roadie.Api.Controllers
return Ok(new return Ok(new
{ {
Username = user.UserName, Username = user.UserName,
RecentLimit = user.RecentlyPlayedLimit,
user.Email, user.Email,
user.LastLogin, user.LastLogin,
avatarUrl, avatarUrl,
@ -175,6 +176,7 @@ namespace Roadie.Api.Controllers
return Ok(new return Ok(new
{ {
Username = user.UserName, Username = user.UserName,
RecentLimit = user.RecentlyPlayedLimit,
user.Email, user.Email,
user.LastLogin, user.LastLogin,
avatarUrl, avatarUrl,
@ -243,6 +245,7 @@ namespace Roadie.Api.Controllers
return Ok(new return Ok(new
{ {
Username = user.UserName, Username = user.UserName,
RecentLimit = user.RecentlyPlayedLimit,
user.Email, user.Email,
user.LastLogin, user.LastLogin,
avatarUrl, avatarUrl,

View file

@ -3,7 +3,7 @@
"Roadie.Api": { "Roadie.Api": {
"commandName": "Project", "commandName": "Project",
"environmentVariables": { "environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Production" "ASPNETCORE_ENVIRONMENT": "Development"
}, },
"applicationUrl": "http://localhost:5123/" "applicationUrl": "http://localhost:5123/"
} }