diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-07-20 11:53:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-20 11:53:12 +0200 |
commit | 4536635e2a1f287b8e03fd6f49d1132b11887d97 (patch) | |
tree | b8a0ecd3a5cab88c6f78b42e6a83611f25c3c375 /lib/public | |
parent | e0d9c43c958a1473e287b89e140830fb76f91bed (diff) | |
parent | 79b540ecc39202154d2374a96a1d255091b39f22 (diff) | |
download | nextcloud-server-4536635e2a1f287b8e03fd6f49d1132b11887d97.tar.gz nextcloud-server-4536635e2a1f287b8e03fd6f49d1132b11887d97.zip |
Merge pull request #10229 from nextcloud/feature/noid/allow-notifiers-to-know-if-we-prepare-push-notifications
Allow notifiers to know if we prepare push notifications
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/Notification/IManager.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/public/Notification/IManager.php b/lib/public/Notification/IManager.php index cbc48142cbb..003e5f1bad1 100644 --- a/lib/public/Notification/IManager.php +++ b/lib/public/Notification/IManager.php @@ -62,4 +62,16 @@ interface IManager extends IApp, INotifier { * @since 9.0.0 */ public function hasNotifiers(); + + /** + * @param bool $preparingPushNotification + * @since 14.0.0 + */ + public function setPreparingPushNotification($preparingPushNotification); + + /** + * @return bool + * @since 14.0.0 + */ + public function isPreparingPushNotification(); } |