1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

move authentication and playback controllers to subdirectories

This commit is contained in:
dkanada 2019-12-15 23:53:13 +09:00
parent 4bf12b1682
commit 07994e0a40
13 changed files with 12 additions and 12 deletions

View file

@ -29,40 +29,40 @@ define([
autoFocus: false, autoFocus: false,
anonymous: true, anonymous: true,
startup: true, startup: true,
controller: "selectserver" controller: "auth/selectserver"
}); });
defineRoute({ defineRoute({
path: "/addserver.html", path: "/addserver.html",
autoFocus: false, autoFocus: false,
anonymous: true, anonymous: true,
startup: true, startup: true,
controller: "addserver" controller: "auth/addserver"
}); });
defineRoute({ defineRoute({
path: "/login.html", path: "/login.html",
autoFocus: false, autoFocus: false,
anonymous: true, anonymous: true,
startup: true, startup: true,
controller: "loginpage" controller: "auth/login"
}); });
defineRoute({ defineRoute({
path: "/forgotpassword.html", path: "/forgotpassword.html",
anonymous: true, anonymous: true,
startup: true, startup: true,
controller: "forgotpassword" controller: "auth/forgotpassword"
}); });
defineRoute({ defineRoute({
path: "/forgotpasswordpin.html", path: "/forgotpasswordpin.html",
autoFocus: false, autoFocus: false,
anonymous: true, anonymous: true,
startup: true, startup: true,
controller: "forgotpasswordpin" controller: "auth/forgotpasswordpin"
}); });
// playback // playback
defineRoute({ defineRoute({
path: "/nowplaying.html", path: "/nowplaying.html",
controller: "nowplayingpage", controller: "playback/nowplaying",
autoFocus: false, autoFocus: false,
transition: "fade", transition: "fade",
fullscreen: true, fullscreen: true,
@ -72,7 +72,7 @@ define([
defineRoute({ defineRoute({
path: "/videoosd.html", path: "/videoosd.html",
transition: "fade", transition: "fade",
controller: "videoosd", controller: "playback/videoosd",
autoFocus: false, autoFocus: false,
type: "video-osd", type: "video-osd",
supportsThemeMedia: true, supportsThemeMedia: true,
@ -401,13 +401,13 @@ define([
path: "/wizardremoteaccess.html", path: "/wizardremoteaccess.html",
autoFocus: false, autoFocus: false,
anonymous: true, anonymous: true,
controller: "wizardremoteaccess" controller: "wizard/access"
}); });
defineRoute({ defineRoute({
path: "/wizardfinish.html", path: "/wizardfinish.html",
autoFocus: false, autoFocus: false,
anonymous: true, anonymous: true,
controller: "wizardfinishpage" controller: "wizard/finish"
}); });
defineRoute({ defineRoute({
path: "/wizardlibrary.html", path: "/wizardlibrary.html",
@ -419,17 +419,17 @@ define([
path: "/wizardsettings.html", path: "/wizardsettings.html",
autoFocus: false, autoFocus: false,
anonymous: true, anonymous: true,
controller: "wizardsettings" controller: "wizard/settings"
}); });
defineRoute({ defineRoute({
path: "/wizardstart.html", path: "/wizardstart.html",
autoFocus: false, autoFocus: false,
anonymous: true, anonymous: true,
controller: "wizardstart" controller: "wizard/start"
}); });
defineRoute({ defineRoute({
path: "/wizarduser.html", path: "/wizarduser.html",
controller: "wizarduserpage", controller: "wizard/user",
autoFocus: false, autoFocus: false,
anonymous: true anonymous: true
}); });