fix verify apikey params typo

pull/2742/head
Henry 2024-06-28 19:09:33 +01:00
parent e69fee1375
commit 4a7d7361b5
1 changed files with 3 additions and 3 deletions

View File

@ -57,10 +57,10 @@ const deleteApiKey = async (req: Request, res: Response, next: NextFunction) =>
// Verify api key
const verifyApiKey = async (req: Request, res: Response, next: NextFunction) => {
try {
if (typeof req.params === 'undefined' || !req.params.apiKey) {
throw new InternalFlowiseError(StatusCodes.PRECONDITION_FAILED, `Error: apikeyController.verifyApiKey - apiKey not provided!`)
if (typeof req.params === 'undefined' || !req.params.apikey) {
throw new InternalFlowiseError(StatusCodes.PRECONDITION_FAILED, `Error: apikeyController.verifyApiKey - apikey not provided!`)
}
const apiResponse = await apikeyService.verifyApiKey(req.params.apiKey)
const apiResponse = await apikeyService.verifyApiKey(req.params.apikey)
return res.json(apiResponse)
} catch (error) {
next(error)