mirror of
https://github.com/appwrite/appwrite
synced 2026-05-21 16:08:22 +00:00
adding QueueRetry,QueueCount to tasks list
This commit is contained in:
parent
f97f24eb16
commit
e3ed9b43f4
1 changed files with 4 additions and 1 deletions
|
|
@ -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())
|
||||
;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue