diff options
| author | Patrick Barron <18354464+barronpm@users.noreply.github.com> | 2020-08-19 21:45:31 +0000 |
|---|---|---|
| committer | Patrick Barron <barronpm@gmail.com> | 2020-08-19 18:11:17 -0400 |
| commit | 98ed90c4a2d94dc75c4c284d695e752ee3c882d5 (patch) | |
| tree | f5d2163c6611b37f13d115c8b38ed424eb066801 /Jellyfin.Api/Controllers/SessionController.cs | |
| parent | ee7beed804a23e1f4ef180ab17a0c99b47401caa (diff) | |
| parent | 634ee2d1e913277ea8f419aca9d91a8e58426642 (diff) | |
Merge branch 'master' into event-rewrite-1
Diffstat (limited to 'Jellyfin.Api/Controllers/SessionController.cs')
| -rw-r--r-- | Jellyfin.Api/Controllers/SessionController.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Jellyfin.Api/Controllers/SessionController.cs b/Jellyfin.Api/Controllers/SessionController.cs index 48b57bdb7..4795fb0cf 100644 --- a/Jellyfin.Api/Controllers/SessionController.cs +++ b/Jellyfin.Api/Controllers/SessionController.cs @@ -413,7 +413,7 @@ namespace Jellyfin.Api.Controllers [Authorize(Policy = Policies.DefaultAuthorization)] [ProducesResponseType(StatusCodes.Status204NoContent)] public ActionResult PostFullCapabilities( - [FromQuery, Required] string? id, + [FromQuery] string? id, [FromBody, Required] ClientCapabilities capabilities) { if (string.IsNullOrWhiteSpace(id)) @@ -480,7 +480,7 @@ namespace Jellyfin.Api.Controllers /// </summary> /// <response code="200">Password reset providers retrieved.</response> /// <returns>An <see cref="IEnumerable{NameIdPair}"/> with the password reset providers.</returns> - [HttpGet("Auto/PasswordResetProviders")] + [HttpGet("Auth/PasswordResetProviders")] [ProducesResponseType(StatusCodes.Status200OK)] [Authorize(Policy = Policies.RequiresElevation)] public ActionResult<IEnumerable<NameIdPair>> GetPasswordResetProviders() |
