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

github.com/CarnetApp/CarnetNextcloud.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorPhie <phie@phie.ovh>2019-09-30 14:02:11 +0300
committerPhie <phie@phie.ovh>2019-09-30 14:02:11 +0300
commit526c6b612fb8f7a8189910bc6788915012fa530c (patch)
treee85bee90b5e9db147985a0b1bb68b5bca44233e6 /lib
parentbff682568b997b949e4878dfc5e4db4f5c32c8dc (diff)
Revert "change endpoint for ui settings"v0.18.2
This reverts commit 2ed68f8007a46fe7eb572381ad9d1881c884f3f1.
Diffstat (limited to 'lib')
-rwxr-xr-xlib/Controller/NoteController.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Controller/NoteController.php b/lib/Controller/NoteController.php
index 626aaf0..40f4db9 100755
--- a/lib/Controller/NoteController.php
+++ b/lib/Controller/NoteController.php
@@ -166,14 +166,14 @@
/**
* @NoAdminRequired
*/
- public function setUISettings($jsonSettings) {
+ public function setBrowserSettings($jsonSettings) {
$this->Config->setUserValue($this->userId, $this->appName,"browser_settings",$jsonSettings);
}
/**
* @NoAdminRequired
*/
- public function getUISettings() {
+ public function getBrowserSettings() {
return $this->Config->getUserValue($this->userId, $this->appName,"browser_settings");
}