@@ -12,6 +12,7 @@ public class VersionController : ControllerBase
1212 [ ProducesResponseType ( StatusCodes . Status404NotFound ) ]
1313 [ ProducesResponseType ( StatusCodes . Status200OK ) ]
1414 [ Produces ( "application/json" ) ]
15+ [ EndpointDescription ( "Query the latest Stable Ryubing release build matching the provided query parameters." ) ]
1516 public async Task < ActionResult < VersionResponse > > GetLatestStable (
1617 [ FromKeyedServices ( "stableCache" ) ] VersionCache vcache ,
1718 [ FromQuery ] string ? os = null ,
@@ -39,6 +40,7 @@ public async Task<ActionResult<VersionResponse>> GetLatestStable(
3940 [ ProducesResponseType ( StatusCodes . Status404NotFound ) ]
4041 [ ProducesResponseType ( StatusCodes . Status200OK ) ]
4142 [ Produces ( "application/json" ) ]
43+ [ EndpointDescription ( "Query the latest Canary Ryubing release build matching the provided query parameters." ) ]
4244 public async Task < ActionResult < VersionResponse > > GetLatestCanary (
4345 [ FromKeyedServices ( "canaryCache" ) ] VersionCache vcache ,
4446 [ FromQuery ] string ? os = null ,
@@ -66,6 +68,7 @@ public async Task<ActionResult<VersionResponse>> GetLatestCanary(
6668 [ ProducesResponseType ( StatusCodes . Status404NotFound ) ]
6769 [ ProducesResponseType ( StatusCodes . Status200OK ) ]
6870 [ Produces ( "application/json" ) ]
71+ [ EndpointDescription ( "Query a specific Stable Ryubing version cache entry." ) ]
6972 public async Task < ActionResult < VersionCacheEntry > > GetSpecificStable (
7073 [ FromKeyedServices ( "stableCache" ) ] VersionCache vcache ,
7174 string version
@@ -81,6 +84,7 @@ string version
8184 [ ProducesResponseType ( StatusCodes . Status404NotFound ) ]
8285 [ ProducesResponseType ( StatusCodes . Status200OK ) ]
8386 [ Produces ( "application/json" ) ]
87+ [ EndpointDescription ( "Query a specific Canary Ryubing version cache entry." ) ]
8488 public async Task < ActionResult < VersionCacheEntry > > GetSpecificCanary (
8589 [ FromKeyedServices ( "canaryCache" ) ] VersionCache vcache ,
8690 string version
0 commit comments