1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-20 00:11:46 +02:00
Radarr/NzbDrone.Api/FrontendModule/IndexModule.cs

30 lines
755 B
C#
Raw Normal View History

2013-02-18 04:04:28 +01:00
using System;
using System.Linq;
using Nancy;
2013-02-18 04:04:28 +01:00
using Nancy.Responses.Negotiation;
namespace NzbDrone.Api.FrontendModule
{
public class IndexModule : NancyModule
{
public IndexModule()
{
2013-02-18 04:04:28 +01:00
//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();
}
2013-03-29 02:49:14 +01:00
return View["UI/index.html"];
}
}
}