1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-01-03 05:25:10 +00:00

New: Allow HEAD requests to ping endpoint

(cherry picked from commit 7353fe479dbb8d0dab76993ebed92d48e1b05524)
This commit is contained in:
Bogdan 2024-03-28 07:30:45 +02:00
parent e730cf6307
commit f890a8c18f

View file

@ -21,6 +21,7 @@ public PingController(IConfigRepository configRepository, ICacheManager cacheMan
[AllowAnonymous]
[HttpGet("/ping")]
[HttpHead("/ping")]
[Produces("application/json")]
public ActionResult<PingResource> GetStatus()
{