From 9053ea6c5f45d61a5fb611ec0552b7e21224061e Mon Sep 17 00:00:00 2001 From: xfarrow Date: Thu, 15 Feb 2024 16:08:45 +0100 Subject: [PATCH] add comment --- backend/apis/nodejs/api_controller.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/backend/apis/nodejs/api_controller.js b/backend/apis/nodejs/api_controller.js index 4f4875e..2c815f9 100644 --- a/backend/apis/nodejs/api_controller.js +++ b/backend/apis/nodejs/api_controller.js @@ -453,7 +453,12 @@ async function createOrganizationPost(req, res){ } } -// GET +/** + * GET Request + * + * Obtains an organization by its identifier. + * @returns the organization. + */ async function getOrganization(req, res){ const organizationId = req.params.id; try {