Always enable Space Membership Web Notifications (#4789)

This commit is contained in:
Yuriy Bakhtin 2021-01-22 11:53:43 +03:00 committed by GitHub
parent 7e30386938
commit a337048f0b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 0 deletions

View File

@ -33,3 +33,4 @@
- Enh #4781: Change allowed characters in username
- Enh #4416: Added replay to sub comments
- Enh #4571: humhub/libs/Html::containerLink() now adds a "data-guid" attribute
- Enh #4787: Always enable Space Membership Web Notifications

View File

@ -63,4 +63,15 @@ class SpaceMemberNotificationCategory extends NotificationCategory
return $target->defaultSetting;
}
}
/**
* @inheritdoc
*/
public function getFixedSettings()
{
$webTarget = Yii::createObject(WebTarget::class);
return [
$webTarget->id,
];
}
}