mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-08-04 19:08:42 +00:00
Fix inconsistencies in the XML documentation
This commit is contained in:
parent
bcdcf5b795
commit
473b422181
1 changed files with 4 additions and 4 deletions
|
@ -61,7 +61,7 @@ public class StatisticsEndpoints : ApiEndpointController
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Get player counts for each individual title
|
/// Get player counts for each individual title
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <returns>An instance of PlayerCountResponse</returns>
|
/// <returns>An instance of PlayerCountByGameResponse</returns>
|
||||||
[HttpGet("playerCount")]
|
[HttpGet("playerCount")]
|
||||||
[HttpGet("playerCount/game")]
|
[HttpGet("playerCount/game")]
|
||||||
[ProducesResponseType(typeof(PlayerCountByGameResponse), StatusCodes.Status200OK)]
|
[ProducesResponseType(typeof(PlayerCountByGameResponse), StatusCodes.Status200OK)]
|
||||||
|
@ -86,9 +86,9 @@ public class StatisticsEndpoints : ApiEndpointController
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Get player counts for each individual title
|
/// Get player counts for each individual platform
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <returns>An instance of PlayerCountResponse</returns>
|
/// <returns>An instance of PlayerCountByPlatformResponse</returns>
|
||||||
[HttpGet("playerCount/platform")]
|
[HttpGet("playerCount/platform")]
|
||||||
[ProducesResponseType(typeof(PlayerCountByPlatformResponse), StatusCodes.Status200OK)]
|
[ProducesResponseType(typeof(PlayerCountByPlatformResponse), StatusCodes.Status200OK)]
|
||||||
public async Task<IActionResult> GetPlayerCountsByPlatform()
|
public async Task<IActionResult> GetPlayerCountsByPlatform()
|
||||||
|
@ -115,7 +115,7 @@ public class StatisticsEndpoints : ApiEndpointController
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets a list of online players
|
/// Gets a list of online players
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <returns>An instance of PlayerCountResponse</returns>
|
/// <returns>An instance of PlayerListResponse</returns>
|
||||||
[HttpGet("players")]
|
[HttpGet("players")]
|
||||||
[ProducesResponseType(typeof(PlayerListResponse), StatusCodes.Status200OK)]
|
[ProducesResponseType(typeof(PlayerListResponse), StatusCodes.Status200OK)]
|
||||||
public async Task<IActionResult> GetPlayerList()
|
public async Task<IActionResult> GetPlayerList()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue