diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2021-02-09 13:53:41 +0100 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2021-02-09 13:53:41 +0100 |
commit | 4fc0b2c639f1dd3c67a038c532cf98138b813dbe (patch) | |
tree | f85a4dd880dca658ad3317751ce9649a16a9f78b /lib/public/WorkflowEngine | |
parent | a36186980dec315929a7e816042d613134bf7039 (diff) | |
download | nextcloud-server-4fc0b2c639f1dd3c67a038c532cf98138b813dbe.tar.gz nextcloud-server-4fc0b2c639f1dd3c67a038c532cf98138b813dbe.zip |
Deprecate all remaining event constants
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'lib/public/WorkflowEngine')
-rw-r--r-- | lib/public/WorkflowEngine/IManager.php | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/lib/public/WorkflowEngine/IManager.php b/lib/public/WorkflowEngine/IManager.php index 5863cf7ce22..579cb4cd149 100644 --- a/lib/public/WorkflowEngine/IManager.php +++ b/lib/public/WorkflowEngine/IManager.php @@ -46,10 +46,18 @@ interface IManager { public const MAX_OPERATION_VALUE_BYTES = 4096; /** - * @deprecated Will be removed in NC19. Use the dedicated events in OCP\WorkflowEngine\Events + * @deprecated 17.0.0 Will be removed in NC19. Use the dedicated events in OCP\WorkflowEngine\Events */ public const EVENT_NAME_REG_OPERATION = 'OCP\WorkflowEngine::registerOperations'; + + /** + * @deprecated 17.0.0 + */ public const EVENT_NAME_REG_ENTITY = 'OCP\WorkflowEngine::registerEntities'; + + /** + * @deprecated 17.0.0 + */ public const EVENT_NAME_REG_CHECK = 'OCP\WorkflowEngine::registerChecks'; /** |