Skip to content

Commit 5677b0d

Browse files
committed
Fix get project endpoint url
1 parent a80e090 commit 5677b0d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

openapi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ paths:
5858
application/json:
5959
schema:
6060
$ref: '#/components/schemas/ProjectListResponse'
61-
/project/{name}:
61+
/projects/{name}:
6262
get:
6363
summary: Get a single project by name
6464
operationId: getProject

src/Api/ProjectsApi.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ public function getProjectRequest(
353353
}
354354

355355

356-
$resourcePath = '/project/{name}';
356+
$resourcePath = '/projects/{name}';
357357
$formParams = [];
358358
$queryParams = [];
359359
$headerParams = [];

0 commit comments

Comments
 (0)