diff --git a/src/Appwrite/Platform/Modules/DevelopmentKeys/Http/Delete.php b/src/Appwrite/Platform/Modules/DevelopmentKeys/Http/Delete.php index 414f8d59a7..a599b660d9 100644 --- a/src/Appwrite/Platform/Modules/DevelopmentKeys/Http/Delete.php +++ b/src/Appwrite/Platform/Modules/DevelopmentKeys/Http/Delete.php @@ -1,4 +1,5 @@ type = Service::TYPE_HTTP; $this->addAction(Create::getName(), new Create()); + $this->addAction(Update::getName(), new Update()); + $this->addAction(Get::getName(), new Get()); + $this->addAction(XList::getName(), new XList()); + $this->addAction(Delete::getName(), new Delete()); } }