mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-05-16 22:52:27 +00:00
Correct a typo in endpoint and return blank playlist
This commit is contained in:
parent
b1ad4d3218
commit
022bb4dc3f
2 changed files with 2 additions and 2 deletions
|
@ -16,7 +16,7 @@ public class DeveloperController : Controller
|
||||||
this.database = database;
|
this.database = database;
|
||||||
}
|
}
|
||||||
|
|
||||||
[HttpGet("/developer_videos")]
|
[HttpGet("developer_videos")]
|
||||||
public async Task<IActionResult> DeveloperVideos()
|
public async Task<IActionResult> DeveloperVideos()
|
||||||
{
|
{
|
||||||
GameToken? token = await this.database.GameTokenFromRequest(this.Request);
|
GameToken? token = await this.database.GameTokenFromRequest(this.Request);
|
||||||
|
|
|
@ -24,7 +24,7 @@ public class CollectionController : ControllerBase
|
||||||
}
|
}
|
||||||
|
|
||||||
[HttpGet("user/{username}/playlists")]
|
[HttpGet("user/{username}/playlists")]
|
||||||
public IActionResult GetUserPlaylists(string username) => this.Ok();
|
public IActionResult GetUserPlaylists(string username) => this.Ok("<playlists></playlists>");
|
||||||
|
|
||||||
[HttpGet("searches")]
|
[HttpGet("searches")]
|
||||||
[HttpGet("genres")]
|
[HttpGet("genres")]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue