a fork of iceshrimp.net but a tweaked frontend to my personal liking. waow
fediverse social-media social iceshrimp fedi
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

[backend/web] Add doc comment for Version endpoint

authored by

pancakes and committed by
Iceshrimp development
783ef270 4b103fc0

+4 -5
+4 -5
Iceshrimp.Backend/Controllers/Web/VersionController.cs
··· 10 10 11 11 namespace Iceshrimp.Backend.Controllers.Web; 12 12 13 - #if DEBUG 14 - [ApiExplorerSettings(IgnoreApi = false)] 15 - #else 16 - [ApiExplorerSettings(IgnoreApi = true)] 17 - #endif 18 13 [ApiController] 19 14 [Authenticate] 20 15 [EnableRateLimiting("sliding")] ··· 23 18 [EnableCors("iceshrimp")] 24 19 public class VersionController : ControllerBase 25 20 { 21 + /// <summary> 22 + /// Get version 23 + /// </summary> 24 + /// <response code="200">Version information</response> 26 25 [HttpGet] 27 26 [ProducesResults(HttpStatusCode.OK)] 28 27 public VersionResponse GetVersion()