From af3dc25e2c41afa5519f9287142726096e5c7f60 Mon Sep 17 00:00:00 2001 From: Damodar Lohani Date: Tue, 16 Jul 2024 07:48:21 +0000 Subject: [PATCH] add new endpoints to module --- .../Platform/Modules/DevelopmentKeys/Http/Delete.php | 1 + .../Platform/Modules/DevelopmentKeys/Http/Get.php | 1 + .../Platform/Modules/DevelopmentKeys/Http/Update.php | 1 + .../Platform/Modules/DevelopmentKeys/Http/XList.php | 1 + .../Platform/Modules/DevelopmentKeys/Services/Http.php | 8 ++++++++ 5 files changed, 12 insertions(+) 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()); } }