feat(webservice): Started on api endpoint

Using specific management and the WebserviceSpecificManagementInterface contract to tap into the webservice api.
This commit is contained in:
2026-02-23 11:32:36 +01:00
parent 5b3c638b5c
commit ff46d6c11c
9 changed files with 144 additions and 23 deletions

View File

@@ -13,6 +13,8 @@ if (file_exists(__DIR__ . '/vendor/autoload.php')) {
require_once __DIR__ . '/vendor/autoload.php';
}
require_once __DIR__ . '/classes/WebserviceSpecificManagementOrderreference.php';
class Ws_OrderReference extends Module
{
/** @var OrderReferenceRepository */
@@ -41,4 +43,4 @@ class Ws_OrderReference extends Module
$this->description = $this->l('Adds an optional order reference field to the shopping cart summary.');
}
}
}