소스 검색

Adds produces annotation to the base controller to indicate application/json as the response type for endpoints

ZadenRB 5 년 전
부모
커밋
eee02a355a
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      Jellyfin.Api/BaseJellyfinApiController.cs

+ 1 - 0
Jellyfin.Api/BaseJellyfinApiController.cs

@@ -7,6 +7,7 @@ namespace Jellyfin.Api
     /// </summary>
     [ApiController]
     [Route("[controller]")]
+    [Produces("application/json")]
     public class BaseJellyfinApiController : ControllerBase
     {
     }