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

github.com/nextcloud/files_texteditor.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2017-04-03 21:06:41 +0300
committerRoeland Jago Douma <roeland@famdouma.nl>2017-04-03 21:06:41 +0300
commita7596caa7cbe2e260cfefa31ace59d0def06ed76 (patch)
treeac86171551d66f4d9d296efc1e7dd776dcdcfdf6 /appinfo
parent74c710a2b4ba26d53f308fb3b96305cab831a936 (diff)
Move the controller over to the node API
The app should use the official node api. As a nice side effect this fixes https://github.com/nextcloud/server/issues/4185 Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'appinfo')
-rw-r--r--appinfo/application.php4
-rw-r--r--appinfo/info.xml2
2 files changed, 3 insertions, 3 deletions
diff --git a/appinfo/application.php b/appinfo/application.php
index 463d3db..d0e0f78 100644
--- a/appinfo/application.php
+++ b/appinfo/application.php
@@ -50,8 +50,8 @@ class Application extends App {
$c->getAppName(),
$server->getRequest(),
$server->getL10N($c->getAppName()),
- new View('/' . $uid . '/files'),
- $server->getLogger()
+ $server->getLogger(),
+ $server->getUserFolder($uid)
);
});
}
diff --git a/appinfo/info.xml b/appinfo/info.xml
index e9b5c8f..a294a79 100644
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -7,7 +7,7 @@ More information is available in the text editor documentation.
</description>
<licence>AGPL</licence>
<author>Tom Needham, Björn Schießle</author>
- <version>2.4</version>
+ <version>2.4.1</version>
<shipped>true</shipped>
<default_enable/>
<ocsid>166051</ocsid>