Skip to content

Commit

Permalink
Fix url parameters in openapi spec (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
Cyanoure authored Aug 5, 2024
1 parent 7191c16 commit 235ab7e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/main/resources/luckperms-openapi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -789,7 +789,7 @@ paths:
in: query
name: type
description: Search for nodes with a type equal to
'/group/{name}':
'/group/{groupName}':
parameters:
- $ref: '#/components/parameters/groupName'
get:
Expand Down Expand Up @@ -839,7 +839,7 @@ paths:
description: Delete a group
tags:
- Groups
'/group/{name}/nodes':
'/group/{groupName}/nodes':
parameters:
- $ref: '#/components/parameters/groupName'
get:
Expand Down Expand Up @@ -1020,7 +1020,7 @@ paths:
Specify the nodes to be deleted.
If the request body is empty, all nodes will be deleted.
'/group/{name}/meta':
'/group/{groupName}/meta':
parameters:
- $ref: '#/components/parameters/groupName'
get:
Expand All @@ -1047,7 +1047,7 @@ paths:
description: Group doesn't exist
operationId: get-group-meta
description: Get the groups metadata
'/group/{name}/permission-check':
'/group/{groupName}/permission-check':
parameters:
- $ref: '#/components/parameters/groupName'
get:
Expand Down Expand Up @@ -1185,7 +1185,7 @@ paths:
description: Create a new track.
tags:
- Tracks
'/track/{name}':
'/track/{trackName}':
parameters:
- $ref: '#/components/parameters/trackName'
get:
Expand Down

0 comments on commit 235ab7e

Please sign in to comment.