diff options
| author | Bond-009 <bond.009@outlook.com> | 2026-03-08 11:35:46 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-03-08 11:35:46 +0100 |
| commit | eb3f8b93d0026be3c255c3683ad99a32846f3215 (patch) | |
| tree | ba92df84fb1afafe8efd16dd876ed0dce80a4dd9 /Jellyfin.Api/Controllers/QuickConnectController.cs | |
| parent | 0ebf6a6db6dbd3d3148c8075427de0516b274537 (diff) | |
| parent | 44f7d2b854d092de86def8ee73ab285c5409190e (diff) | |
Merge pull request #16331 from JuanCalderon-17/first-contribution
Add missing ProducesResponseType(401) to QuickConnectController.InitiateQuickConnect
Diffstat (limited to 'Jellyfin.Api/Controllers/QuickConnectController.cs')
| -rw-r--r-- | Jellyfin.Api/Controllers/QuickConnectController.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Jellyfin.Api/Controllers/QuickConnectController.cs b/Jellyfin.Api/Controllers/QuickConnectController.cs index 2a15ff767c..bdb2a4d20b 100644 --- a/Jellyfin.Api/Controllers/QuickConnectController.cs +++ b/Jellyfin.Api/Controllers/QuickConnectController.cs @@ -52,6 +52,7 @@ public class QuickConnectController : BaseJellyfinApiController /// <returns>A <see cref="QuickConnectResult"/> with a secret and code for future use or an error message.</returns> [HttpPost("Initiate")] [ProducesResponseType(StatusCodes.Status200OK)] + [ProducesResponseType(StatusCodes.Status401Unauthorized)] public async Task<ActionResult<QuickConnectResult>> InitiateQuickConnect() { try |
