diff options
author | Joas Schilling <213943+nickvergessen@users.noreply.github.com> | 2022-07-01 15:29:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-01 15:29:03 +0200 |
commit | 6222b702db03d7bf08bd80c760fdaca3c0167db5 (patch) | |
tree | f8b0fb6a1e034c149f41127eb4688979047a7cb4 /lib | |
parent | 84fec2f9fea09d347c445c191a3db9226769b9e3 (diff) | |
parent | 473a7865108b787e4db90df3dfa19d13ad1323df (diff) | |
download | nextcloud-server-6222b702db03d7bf08bd80c760fdaca3c0167db5.tar.gz nextcloud-server-6222b702db03d7bf08bd80c760fdaca3c0167db5.zip |
Merge pull request #32576 from nextcloud/feature/spreed-7321/automatic-DND-outside-of-availability
🤖 Automatically set user status to ⛔ DND outside of 📅 availability
Diffstat (limited to 'lib')
-rw-r--r-- | lib/public/UserStatus/IUserStatus.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/public/UserStatus/IUserStatus.php b/lib/public/UserStatus/IUserStatus.php index bf743dea08d..8803b328ad5 100644 --- a/lib/public/UserStatus/IUserStatus.php +++ b/lib/public/UserStatus/IUserStatus.php @@ -65,6 +65,18 @@ interface IUserStatus { public const INVISIBLE = 'invisible'; /** + * @var string + * @since 25.0.0 + */ + public const MESSAGE_CALL = 'call'; + + /** + * @var string + * @since 25.0.0 + */ + public const MESSAGE_AVAILABILITY = 'availability'; + + /** * Get the user this status is connected to * * @return string |