From e3ed9b43f43c0b5968bcfeb5d0fc02f2bc710c56 Mon Sep 17 00:00:00 2001 From: shimon Date: Thu, 18 Apr 2024 13:13:40 +0300 Subject: [PATCH] adding QueueRetry,QueueCount to tasks list --- src/Appwrite/Platform/Services/Tasks.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/Appwrite/Platform/Services/Tasks.php b/src/Appwrite/Platform/Services/Tasks.php index 8b0cba8e16..8a6890f630 100644 --- a/src/Appwrite/Platform/Services/Tasks.php +++ b/src/Appwrite/Platform/Services/Tasks.php @@ -11,10 +11,11 @@ use Appwrite\Platform\Tasks\Schedule; use Appwrite\Platform\Tasks\SDKs; use Appwrite\Platform\Tasks\Specs; use Appwrite\Platform\Tasks\SSL; -use Appwrite\Platform\Tasks\Usage; use Appwrite\Platform\Tasks\Vars; use Appwrite\Platform\Tasks\Version; use Appwrite\Platform\Tasks\Upgrade; +use Appwrite\Platform\Tasks\QueueRetry; +use Appwrite\Platform\Tasks\QueueCount; class Tasks extends Service { @@ -33,6 +34,8 @@ class Tasks extends Service ->addAction(Migrate::getName(), new Migrate()) ->addAction(SDKs::getName(), new SDKs()) ->addAction(Specs::getName(), new Specs()) + ->addAction(QueueRetry::getName(), new QueueRetry()) + ->addAction(QueueCount::getName(), new QueueCount()) ; } }