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
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Notification/AppHint.php')
-rw-r--r--lib/Notification/AppHint.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Notification/AppHint.php b/lib/Notification/AppHint.php
index c7d18f4c..96ce37e3 100644
--- a/lib/Notification/AppHint.php
+++ b/lib/Notification/AppHint.php
@@ -57,9 +57,9 @@ 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('recognize', $this->userId);
$this->sendNotification('groupfolders', $this->userId);
- //$this->sendNotification('social', $this->userId);
- $this->sendNotification('notes', $this->userId);
+ $this->sendNotification('forms', $this->userId);
$this->sendNotification('deck', $this->userId);
$this->sendNotification('tasks', $this->userId);
$this->config->setUserValue($this->userId, 'firstrunwizard', 'apphint', self::APP_HINT_VERSION);