mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-08-02 01:58:40 +00:00
Actually fix LBP1 cool slots
This commit is contained in:
parent
04cdca0d26
commit
2bca140dab
1 changed files with 7 additions and 1 deletions
|
@ -89,8 +89,14 @@ namespace LBPUnion.ProjectLighthouse.Controllers
|
|||
return this.Ok(slot.Serialize(ratedLevel, visitedLevel));
|
||||
}
|
||||
|
||||
[HttpGet("slots/lbp2cool")]
|
||||
[HttpGet("slots/cool")]
|
||||
public async Task<IActionResult> Lbp1CoolSlots([FromQuery] int page)
|
||||
{
|
||||
const int pageSize = 30;
|
||||
return await CoolSlots(page * pageSize, pageSize);
|
||||
}
|
||||
|
||||
[HttpGet("slots/lbp2cool")]
|
||||
public async Task<IActionResult> CoolSlots
|
||||
(
|
||||
[FromQuery] int pageStart,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue