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

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJoas Schilling <213943+nickvergessen@users.noreply.github.com>2021-10-04 18:25:24 +0300
committerGitHub <noreply@github.com>2021-10-04 18:25:24 +0300
commitb37d2576fe7cca39bf4453db79863bfe9b9287ad (patch)
treeeeca898d81580b88b22821a8e0a407fb79836236 /lib
parent6c0068dac2c3cbe96f1a0f238e9ca949024c827e (diff)
parent37463d05f92af0eb0b70dc7565954cc60278efb6 (diff)
Merge pull request #6303 from nextcloud/bugfix/6302/dont-allow-to-get-pushes-for-talk-activity
Don't allow to get pushes for Talk activity
Diffstat (limited to 'lib')
-rw-r--r--lib/Activity/Setting.php41
1 files changed, 16 insertions, 25 deletions
diff --git a/lib/Activity/Setting.php b/lib/Activity/Setting.php
index e913f4e15..13d4ead8d 100644
--- a/lib/Activity/Setting.php
+++ b/lib/Activity/Setting.php
@@ -23,10 +23,10 @@ declare(strict_types=1);
namespace OCA\Talk\Activity;
-use OCP\Activity\ISetting;
+use OCP\Activity\ActivitySettings;
use OCP\IL10N;
-class Setting implements ISetting {
+class Setting extends ActivitySettings {
/** @var IL10N */
protected $l;
@@ -52,44 +52,35 @@ class Setting implements ISetting {
}
/**
- * @return int whether the filter should be rather on the top or bottom of
- * the admin section. The filters are arranged in ascending order of the
- * priority values. It is required to return a value between 0 and 100.
- * @since 11.0.0
+ * {@inheritdoc}
*/
- public function getPriority(): int {
- return 51;
+ public function getGroupIdentifier(): string {
+ return 'other';
}
/**
- * @return bool True when the option can be changed for the stream
- * @since 11.0.0
+ * {@inheritdoc}
*/
- public function canChangeStream(): bool {
- return true;
+ public function getGroupName() {
+ return $this->l->t('Other activities');
}
/**
- * @return bool True when the option can be changed for the stream
- * @since 11.0.0
+ * {@inheritdoc}
*/
- public function isDefaultEnabledStream(): bool {
- return true;
+ public function getPriority(): int {
+ return 51;
}
-
/**
- * @return bool True when the option can be changed for the mail
- * @since 11.0.0
+ * {@inheritdoc}
*/
- public function canChangeMail(): bool {
- return true;
+ public function canChangeNotification(): bool {
+ return false;
}
-
/**
- * @return bool True when the option can be changed for the stream
- * @since 11.0.0
+ * {@inheritdoc}
*/
- public function isDefaultEnabledMail(): bool {
+ public function isDefaultEnabledNotification(): bool {
return false;
}
}