diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2019-09-17 16:33:27 +0200 |
---|---|---|
committer | npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com> | 2019-09-28 09:39:28 +0000 |
commit | de6940352a2f708376219a89ec84a8e6d25ca59e (patch) | |
tree | 459bacfc183b24d611be1877fbe22bbcd4efb1d6 /core/src | |
parent | c8cd607681ac128228f57114ce14dd67ab05de04 (diff) | |
download | nextcloud-server-de6940352a2f708376219a89ec84a8e6d25ca59e.tar.gz nextcloud-server-de6940352a2f708376219a89ec84a8e6d25ca59e.zip |
Move settings to an app
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
Diffstat (limited to 'core/src')
-rw-r--r-- | core/src/OC/constants.js | 2 | ||||
-rw-r--r-- | core/src/OC/routing.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/core/src/OC/constants.js b/core/src/OC/constants.js index a519ce1a053..d77a2d28c70 100644 --- a/core/src/OC/constants.js +++ b/core/src/OC/constants.js @@ -19,7 +19,7 @@ * along with this program. If not see <http://www.gnu.org/licenses/>. */ -export const coreApps = ['', 'admin','log','core/search','settings','core','3rdparty'] +export const coreApps = ['', 'admin','log','core/search','core','3rdparty'] export const menuSpeed = 50 export const PERMISSION_NONE = 0 export const PERMISSION_CREATE = 4 diff --git a/core/src/OC/routing.js b/core/src/OC/routing.js index 8a8bd508d51..0223a6cfd1e 100644 --- a/core/src/OC/routing.js +++ b/core/src/OC/routing.js @@ -145,7 +145,7 @@ export const filePath = (app, type, file) => { } link += file } else { - if ((app === 'settings' || app === 'core' || app === 'search') && type === 'ajax') { + if ((app === 'core' || app === 'search') && type === 'ajax') { link += '/index.php/' } else { link += '/' |