Add ENABLE_OPERATOR method mapping for operator management
Some checks are pending
CI / debug (push) Waiting to run
CI / check-phpunit (push) Waiting to run
CI / check-phpdoc (push) Waiting to run
CI / release (push) Waiting to run
CI / generate-phpdoc (push) Blocked by required conditions
CI / test (push) Blocked by required conditions
CI / release-documentation (push) Blocked by required conditions
CI / release-artifacts (push) Blocked by required conditions

This commit is contained in:
netkas 2025-06-02 21:31:39 -04:00
parent aaa2b5ab70
commit bfabbe3e17
Signed by: netkas
GPG key ID: 4D8629441B76E4CC

View file

@ -66,6 +66,7 @@
$requestMethod === 'POST' && $path === '/operators/create' => Method::CREATE_OPERATOR,
$requestMethod === 'DELETE' && $path === '/operators/delete' => Method::DELETE_OPERATOR,
$requestMethod === 'POST' && $path === '/operators/enable' => Method::ENABLE_OPERATOR,
default => null,
};