You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
729 B
31 lines
729 B
11 years ago
|
using Nancy;
|
||
|
using NzbDrone.Api.Extensions;
|
||
|
using NzbDrone.Common.EnvironmentInfo;
|
||
|
|
||
|
namespace NzbDrone.Api.Frontend
|
||
|
{
|
||
|
public interface IAddCacheHeaders
|
||
|
{
|
||
|
void ToResponse(Request request, Response response);
|
||
|
}
|
||
|
|
||
|
public class AddCacheHeaders : IAddCacheHeaders
|
||
|
{
|
||
|
public void ToResponse(Request request, Response response)
|
||
|
{
|
||
|
if (!RuntimeInfo.IsProduction)
|
||
|
{
|
||
|
response.Headers.DisableCache();
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
if (request.Url.Path.ToLower() == "app.js")
|
||
|
{
|
||
|
response.Headers.DisableCache();
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
response.Headers.EnableCache();
|
||
|
}
|
||
|
}
|
||
|
}
|