mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-20 21:54:25 -04:00
splited MVC and nancy application
backbone app is now fully served from nancy including css,js,html
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
using System.Linq;
|
||||
using Nancy;
|
||||
|
||||
namespace NzbDrone.Api.FrontendModule
|
||||
{
|
||||
public class IndexModule : NancyModule
|
||||
{
|
||||
public IndexModule()
|
||||
{
|
||||
Get[@"/"] = x => View["NzbDrone.Backbone/index.html"];
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user