diff options
author | Joas Schilling <coding@schilljs.com> | 2022-05-24 14:40:59 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2022-07-01 12:33:07 +0200 |
commit | 5dee54d70bcd207c9b96a4cf6bb58f82fe9fbba9 (patch) | |
tree | f65a1eb9992edc00ebf42e200c16bba1b05dc47a /lib | |
parent | fdcf3eafd614612f5a55a9e03b2370d26dfdedcc (diff) | |
download | nextcloud-server-5dee54d70bcd207c9b96a4cf6bb58f82fe9fbba9.tar.gz nextcloud-server-5dee54d70bcd207c9b96a4cf6bb58f82fe9fbba9.zip |
Add status automation
Signed-off-by: Joas Schilling <coding@schilljs.com>
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 |