add comment

This commit is contained in:
xfarrow 2024-02-15 16:08:45 +01:00
parent 73f2b4db89
commit 9053ea6c5f
1 changed files with 6 additions and 1 deletions

View File

@ -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 {