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.
28 lines
692 B
28 lines
692 B
using System;
|
|
using Nancy;
|
|
|
|
namespace NzbDrone.Api.Frontend
|
|
{
|
|
public class IndexModule : NancyModule
|
|
{
|
|
public IndexModule()
|
|
{
|
|
//Serve anything that doesn't have an extension
|
|
Get[@"/(.*)"] = x => Index();
|
|
}
|
|
|
|
private object Index()
|
|
{
|
|
if(
|
|
Request.Path.Contains(".")
|
|
|| Request.Path.StartsWith("/static", StringComparison.CurrentCultureIgnoreCase)
|
|
|| Request.Path.StartsWith("/api", StringComparison.CurrentCultureIgnoreCase))
|
|
{
|
|
return new NotFoundResponse();
|
|
}
|
|
|
|
|
|
return View["UI/index.html"];
|
|
}
|
|
}
|
|
} |