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

github.com/nextcloud/firstrunwizard.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2019-12-18 12:15:30 +0300
committerJulius Härtl <jus@bitgrid.net>2019-12-18 15:28:43 +0300
commit75a047646508841af7080a1cfc133be36fd50959 (patch)
tree4e53bb1efb6dd249de32d929e15cfed4d278f852 /lib
parent856bbd1b4595fc7be3ffc3f593416f9c84135f93 (diff)
Adjust order of recommended apps
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'lib')
-rw-r--r--lib/Notification/AppHint.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/Notification/AppHint.php b/lib/Notification/AppHint.php
index db751388..6e0351b2 100644
--- a/lib/Notification/AppHint.php
+++ b/lib/Notification/AppHint.php
@@ -63,11 +63,11 @@ class AppHint {
public function sendAppHintNotifications(): void {
if ($this->userId !== null && $this->groupManager->isAdmin($this->userId) && $this->config->getUserValue($this->userId, 'firstrunwizard', 'apphint') !== self::APP_HINT_VERSION) {
- $this->sendNotification('tasks', $this->userId);
- $this->sendNotification('deck', $this->userId);
- $this->sendNotification('notes', $this->userId);
- $this->sendNotification('social', $this->userId);
$this->sendNotification('groupfolders', $this->userId);
+ $this->sendNotification('social', $this->userId);
+ $this->sendNotification('notes', $this->userId);
+ $this->sendNotification('deck', $this->userId);
+ $this->sendNotification('tasks', $this->userId);
$this->config->setUserValue($this->userId, 'firstrunwizard', 'apphint', self::APP_HINT_VERSION);
}
}