1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-11 12:02:35 +02:00

Changed basic auth prompt to Sonarr

This commit is contained in:
Mark McDowall 2014-11-25 07:33:06 -08:00
parent 70f07845fd
commit d78e55a4d1

View File

@ -16,7 +16,7 @@ public EnableAuthInNancy(IAuthenticationService authenticationService)
public void Register(IPipelines pipelines)
{
pipelines.EnableBasicAuthentication(new BasicAuthenticationConfiguration(_authenticationService, "NzbDrone"));
pipelines.EnableBasicAuthentication(new BasicAuthenticationConfiguration(_authenticationService, "Sonarr"));
pipelines.BeforeRequest.AddItemToEndOfPipeline(RequiresAuthentication);
}