aboutsummaryrefslogtreecommitdiffstats
path: root/lib/public/WorkflowEngine
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2023-07-07 11:30:58 +0200
committerJoas Schilling <coding@schilljs.com>2023-07-19 17:37:34 +0200
commitaa039c986a3e8aaa97569d65ff1afd47a9b94a53 (patch)
treef4b40fde0f75197d193f87043f5134b02f345670 /lib/public/WorkflowEngine
parent4877d0b62e1be0a3b726c901e9a1f986fa1a11c5 (diff)
downloadnextcloud-server-aa039c986a3e8aaa97569d65ff1afd47a9b94a53.tar.gz
nextcloud-server-aa039c986a3e8aaa97569d65ff1afd47a9b94a53.zip
fix(workflowengine): Remove legacy event (deprecated since 17)
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/public/WorkflowEngine')
-rw-r--r--lib/public/WorkflowEngine/IManager.php15
1 files changed, 0 insertions, 15 deletions
diff --git a/lib/public/WorkflowEngine/IManager.php b/lib/public/WorkflowEngine/IManager.php
index f09d51eb159..abdcdfa107a 100644
--- a/lib/public/WorkflowEngine/IManager.php
+++ b/lib/public/WorkflowEngine/IManager.php
@@ -45,21 +45,6 @@ interface IManager {
public const MAX_OPERATION_VALUE_BYTES = 4096;
/**
- * @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';
-
- /**
* Listen to `OCP\WorkflowEngine\Events\RegisterEntitiesEvent` at the
* IEventDispatcher for registering your entities.
*