mirror of
https://github.com/sphildreth/roadie
synced 2024-11-22 12:13:10 +00:00
Bug squashing.
This commit is contained in:
parent
aea5afead7
commit
b6c18c6245
2 changed files with 4 additions and 1 deletions
|
@ -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,
|
||||||
|
|
|
@ -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/"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue