Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/core/src
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2019-09-17 17:33:27 +0300
committernpmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>2019-09-28 12:39:28 +0300
commitde6940352a2f708376219a89ec84a8e6d25ca59e (patch)
tree459bacfc183b24d611be1877fbe22bbcd4efb1d6 /core/src
parentc8cd607681ac128228f57114ce14dd67ab05de04 (diff)
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.js2
-rw-r--r--core/src/OC/routing.js2
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 += '/'