From 7995af5aa7f8c4d9d7a32581f48a3f2b1a67c00e Mon Sep 17 00:00:00 2001 From: Luc Patiny Date: Mon, 22 Jan 2024 14:49:05 +0100 Subject: [PATCH] fix: describe of outputFormats route --- docker/src/v1/outputFormats.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/src/v1/outputFormats.js b/docker/src/v1/outputFormats.js index d89c88e..f7b8df8 100644 --- a/docker/src/v1/outputFormats.js +++ b/docker/src/v1/outputFormats.js @@ -7,8 +7,8 @@ export default function outputFormats(fastify) { method: ['GET', 'POST'], handler: getFormats, schema: { - summary: 'List of input formats', - description: 'Get the list of all the allowed input formats', + summary: 'List of output formats', + description: 'Get the list of all the allowed output formats', }, }); }