Merge branch 'main' of github.com:LumaLivy/project-lighthouse

This commit is contained in:
LumaLivy 2021-11-08 13:42:01 -05:00
commit 06f0d7a96f

View file

@ -68,9 +68,9 @@ namespace LBPUnion.ProjectLighthouse.Controllers
}
[HttpGet("friendscores/user/{slotId:int}/{type:int}")]
public async Task<IActionResult> FriendScores(int slotId, int type)
public IActionResult FriendScores(int slotId, int type)
//=> await TopScores(slotId, type);
=> this.Ok("<scores />");
=> this.Ok(LbpSerializer.BlankElement("scores"));
[HttpGet("topscores/user/{slotId:int}/{type:int}")]
[SuppressMessage("ReSharper", "PossibleMultipleEnumeration")]