fix: add missing request methods to /ping endpoint

This commit is contained in:
Victor Westerlund 2026-04-06 11:35:49 +02:00
parent 57884d4a25
commit 31e762b6ba

View file

@ -10,6 +10,10 @@ SET time_zone = "+00:00";
TRUNCATE TABLE `acl`;
INSERT INTO `acl` (`ref_group`, `ref_endpoint`, `method`) VALUES
(NULL, 'ping', 'DELETE'),
(NULL, 'ping', 'POST'),
(NULL, 'ping', 'PATCH'),
(NULL, 'ping', 'PUT'),
(NULL, 'ping', 'GET'),
(NULL, 'coffee', 'GET'),
(NULL, 'languages', 'GET'),