mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-08-02 10:08:39 +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>
|
||||
/// Get player counts for each individual title
|
||||
/// </summary>
|
||||
/// <returns>An instance of PlayerCountResponse</returns>
|
||||
/// <returns>An instance of PlayerCountByGameResponse</returns>
|
||||
[HttpGet("playerCount")]
|
||||
[HttpGet("playerCount/game")]
|
||||
[ProducesResponseType(typeof(PlayerCountByGameResponse), StatusCodes.Status200OK)]
|
||||
|
@ -86,9 +86,9 @@ public class StatisticsEndpoints : ApiEndpointController
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Get player counts for each individual title
|
||||
/// Get player counts for each individual platform
|
||||
/// </summary>
|
||||
/// <returns>An instance of PlayerCountResponse</returns>
|
||||
/// <returns>An instance of PlayerCountByPlatformResponse</returns>
|
||||
[HttpGet("playerCount/platform")]
|
||||
[ProducesResponseType(typeof(PlayerCountByPlatformResponse), StatusCodes.Status200OK)]
|
||||
public async Task<IActionResult> GetPlayerCountsByPlatform()
|
||||
|
@ -115,7 +115,7 @@ public class StatisticsEndpoints : ApiEndpointController
|
|||
/// <summary>
|
||||
/// Gets a list of online players
|
||||
/// </summary>
|
||||
/// <returns>An instance of PlayerCountResponse</returns>
|
||||
/// <returns>An instance of PlayerListResponse</returns>
|
||||
[HttpGet("players")]
|
||||
[ProducesResponseType(typeof(PlayerListResponse), StatusCodes.Status200OK)]
|
||||
public async Task<IActionResult> GetPlayerList()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue