From 814daceeeeeca7e15043b8f4f60ae803e5dda585 Mon Sep 17 00:00:00 2001 From: Alejandro Sirgo Rica Date: Fri, 21 Jun 2024 12:59:19 +0200 Subject: rest: enable shell/output as a GET request shell/output does not modify state, add check to consider GET shell/output a valid request. Keep POST shell/output compatibility. --- src/rest.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rest.c b/src/rest.c index 93e8084..5e1d468 100644 --- a/src/rest.c +++ b/src/rest.c @@ -8094,7 +8094,7 @@ int og_client_state_process_payload_rest(struct og_client *cli) } err = og_cmd_run_post(root, ¶ms); } else if (!strncmp(cmd, "shell/output", strlen("shell/output"))) { - if (method != OG_METHOD_POST) { + if (method != OG_METHOD_POST && method != OG_METHOD_GET) { err = og_client_method_not_found(cli); goto err_process_rest_payload; } -- cgit v1.2.3-18-g5258