Skip to content

Commit

Permalink
Fix issues in projects endpoints (missing ID param, support array of …
Browse files Browse the repository at this point in the history
…IDs or slug, ...)
  • Loading branch information
sylvain-morin authored and sylvain-morin committed Sep 20, 2023
1 parent e2ebe97 commit 279add9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openapi/paths/v2/projects.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const _ = require( "lodash" );
const projectsSearchSchema = require( "../../schema/request/projects_search" );
const transform = require( "../../joi_to_openapi_parameter" );
const ProjectsController = require( "../../../lib/controllers/v2/projects_controller" );
const ProjectsController = require( "../../../lib/controllers/v1/projects_controller" );

module.exports = sendWrapper => {
async function GET( req, res ) {
Expand Down

0 comments on commit 279add9

Please sign in to comment.