mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-16 10:03:51 -07:00
24 lines
652 B
C#
24 lines
652 B
C#
using Nancy;
|
|
using Nancy.Bootstrapper;
|
|
using NzbDrone.Common.EnvironmentInfo;
|
|
|
|
namespace Lidarr.Http.Extensions.Pipelines
|
|
{
|
|
public class LidarrVersionPipeline : IRegisterNancyPipeline
|
|
{
|
|
public int Order => 0;
|
|
|
|
public void Register(IPipelines pipelines)
|
|
{
|
|
pipelines.AfterRequest.AddItemToStartOfPipeline(Handle);
|
|
}
|
|
|
|
private void Handle(NancyContext context)
|
|
{
|
|
if (!context.Response.Headers.ContainsKey("X-ApplicationVersion"))
|
|
{
|
|
context.Response.Headers.Add("X-ApplicationVersion", BuildInfo.Version.ToString());
|
|
}
|
|
}
|
|
}
|
|
}
|