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

View file

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