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

update more controller locations

This commit is contained in:
dkanada 2020-05-17 23:19:21 +09:00
parent 6c8884583d
commit 4beac3f7f4
16 changed files with 16 additions and 16 deletions

View file

@ -1,4 +1,4 @@
define(['controllers/userpasswordpage', 'loading', 'libraryMenu', 'apphost', 'globalize', 'emby-button'], function (UserPasswordPage, loading, libraryMenu, appHost, globalize) { define(['controllers/dashboard/users/userpasswordpage', 'loading', 'libraryMenu', 'apphost', 'globalize', 'emby-button'], function (UserPasswordPage, loading, libraryMenu, appHost, globalize) {
'use strict'; 'use strict';
function reloadUser(page) { function reloadUser(page) {

View file

@ -131,13 +131,13 @@ define([
path: '/dlnaprofile.html', path: '/dlnaprofile.html',
autoFocus: false, autoFocus: false,
roles: 'admin', roles: 'admin',
controller: 'dashboard/dlna/dlnaprofile' controller: 'dashboard/dlna/profile'
}); });
defineRoute({ defineRoute({
path: '/dlnaprofiles.html', path: '/dlnaprofiles.html',
autoFocus: false, autoFocus: false,
roles: 'admin', roles: 'admin',
controller: 'dashboard/dlna/dlnaprofiles' controller: 'dashboard/dlna/profiles'
}); });
defineRoute({ defineRoute({
path: '/addplugin.html', path: '/addplugin.html',
@ -149,7 +149,7 @@ define([
path: '/library.html', path: '/library.html',
autoFocus: false, autoFocus: false,
roles: 'admin', roles: 'admin',
controller: 'dashboard/medialibrarypage' controller: 'dashboard/mediaLibrary'
}); });
defineRoute({ defineRoute({
path: '/librarydisplay.html', path: '/librarydisplay.html',
@ -161,7 +161,7 @@ define([
path: '/dlnasettings.html', path: '/dlnasettings.html',
autoFocus: false, autoFocus: false,
roles: 'admin', roles: 'admin',
controller: 'dashboard/dlna/dlnasettings' controller: 'dashboard/dlna/settings'
}); });
defineRoute({ defineRoute({
path: '/edititemmetadata.html', path: '/edititemmetadata.html',
@ -183,7 +183,7 @@ define([
path: '/metadataimages.html', path: '/metadataimages.html',
autoFocus: false, autoFocus: false,
roles: 'admin', roles: 'admin',
controller: 'dashboard/metadataimagespage' controller: 'dashboard/metadataImages'
}); });
defineRoute({ defineRoute({
path: '/metadatanfo.html', path: '/metadatanfo.html',
@ -207,7 +207,7 @@ define([
path: '/playbackconfiguration.html', path: '/playbackconfiguration.html',
autoFocus: false, autoFocus: false,
roles: 'admin', roles: 'admin',
controller: 'dashboard/playbackconfiguration' controller: 'dashboard/playback'
}); });
defineRoute({ defineRoute({
path: '/availableplugins.html', path: '/availableplugins.html',
@ -235,7 +235,7 @@ define([
}); });
defineRoute({ defineRoute({
path: '/itemdetails.html', path: '/itemdetails.html',
controller: 'itemdetailpage', controller: 'itemDetails',
autoFocus: false, autoFocus: false,
transition: 'fade' transition: 'fade'
}); });
@ -314,7 +314,7 @@ define([
path: '/streamingsettings.html', path: '/streamingsettings.html',
autoFocus: false, autoFocus: false,
roles: 'admin', roles: 'admin',
controller: 'dashboard/streamingsettings' controller: 'dashboard/streaming'
}); });
defineRoute({ defineRoute({
path: '/tv.html', path: '/tv.html',
@ -327,36 +327,36 @@ define([
path: '/useredit.html', path: '/useredit.html',
autoFocus: false, autoFocus: false,
roles: 'admin', roles: 'admin',
controller: 'useredit' controller: 'dashboard/users/useredit'
}); });
defineRoute({ defineRoute({
path: '/userlibraryaccess.html', path: '/userlibraryaccess.html',
autoFocus: false, autoFocus: false,
roles: 'admin', roles: 'admin',
controller: 'userlibraryaccess' controller: 'dashboard/users/userlibraryaccess'
}); });
defineRoute({ defineRoute({
path: '/usernew.html', path: '/usernew.html',
autoFocus: false, autoFocus: false,
roles: 'admin', roles: 'admin',
controller: 'usernew' controller: 'dashboard/users/usernew'
}); });
defineRoute({ defineRoute({
path: '/userparentalcontrol.html', path: '/userparentalcontrol.html',
autoFocus: false, autoFocus: false,
roles: 'admin', roles: 'admin',
controller: 'userparentalcontrol' controller: 'dashboard/users/userparentalcontrol'
}); });
defineRoute({ defineRoute({
path: '/userpassword.html', path: '/userpassword.html',
autoFocus: false, autoFocus: false,
controller: 'userpasswordpage' controller: 'dashboard/users/userpasswordpage'
}); });
defineRoute({ defineRoute({
path: '/userprofiles.html', path: '/userprofiles.html',
autoFocus: false, autoFocus: false,
roles: 'admin', roles: 'admin',
controller: 'userprofilespage' controller: 'dashboard/users/userprofilespage'
}); });
defineRoute({ defineRoute({
@ -375,7 +375,7 @@ define([
path: '/wizardlibrary.html', path: '/wizardlibrary.html',
autoFocus: false, autoFocus: false,
anonymous: true, anonymous: true,
controller: 'dashboard/medialibrarypage' controller: 'dashboard/mediaLibrary'
}); });
defineRoute({ defineRoute({
path: '/wizardsettings.html', path: '/wizardsettings.html',