From e0864507c573cb91ee5f3b074154bce9eda2f33a Mon Sep 17 00:00:00 2001 From: Frank Schubert Date: Thu, 8 Feb 2024 11:44:17 +0100 Subject: [PATCH] Changed /preorder/:code/clientInstallationFinished to POST --- application/Api/v1/PreorderApicontroller.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/Api/v1/PreorderApicontroller.php b/application/Api/v1/PreorderApicontroller.php index fbde63ebb..deae40682 100644 --- a/application/Api/v1/PreorderApicontroller.php +++ b/application/Api/v1/PreorderApicontroller.php @@ -49,7 +49,7 @@ class PreorderApicontroller extends mfBaseApicontroller { $this->addRoute("/preorder/customerInstallationFeedback", [$modules["Cif"], "getCifData"], "GET"); $this->addRoute("/preorder/customerInstallationFeedback", [$modules["Cif"], "userSetCif"], "POST"); - $this->addRoute("/preorder/:code/clientInstallationFinished", [$modules["Cif"], "providerSetCif"], "GET"); + $this->addRoute("/preorder/:code/clientInstallationFinished", [$modules["Cif"], "providerSetCif"], "POST"); $this->addRoute("/preorder/:code/serviceActivated", [$modules["Activation"], "setServiceActive"], "POST"); $this->addRoute("/preorder/:code", "getPreorder", "GET"); $this->addRoute("/preorder/:code", "cancelPreorder", "DELETE");