mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 02:22:31 +01:00
16 lines
335 B
C#
16 lines
335 B
C#
using Nancy;
|
|
|
|
namespace NzbDrone.Api.Extensions
|
|
{
|
|
public static class CacheHeaderPipeline
|
|
{
|
|
public static void Handle(NancyContext context)
|
|
{
|
|
if (context.Response.ContentType.Contains("json"))
|
|
{
|
|
context.Response.Headers.DisableCache();
|
|
|
|
}
|
|
}
|
|
}
|
|
} |