mirror of
https://github.com/Radarr/Radarr
synced 2025-02-21 22:07:21 +00:00
15 lines
No EOL
348 B
C#
15 lines
No EOL
348 B
C#
using Nancy;
|
|
using Nancy.Security;
|
|
|
|
namespace NzbDrone.Api
|
|
{
|
|
public abstract class NzbDroneApiModule : NancyModule
|
|
{
|
|
protected NzbDroneApiModule(string resource)
|
|
: base("/api/" + resource.Trim('/'))
|
|
{
|
|
this.RequiresAuthentication();
|
|
Options["/"] = x => new Response();
|
|
}
|
|
}
|
|
} |