1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2024-12-26 09:47:39 +00: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 @@ namespace NzbDrone.Api.Authentication
public void Register(IPipelines pipelines)
{
pipelines.EnableBasicAuthentication(new BasicAuthenticationConfiguration(_authenticationService, "NzbDrone"));
pipelines.EnableBasicAuthentication(new BasicAuthenticationConfiguration(_authenticationService, "Sonarr"));
pipelines.BeforeRequest.AddItemToEndOfPipeline(RequiresAuthentication);
}