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

pull/2960/head
ZadenRB 4 years ago
parent a2f19eadf7
commit eee02a355a

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

Loading…
Cancel
Save