Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

OpenAPI - Fix some url parameters #17

Merged
merged 1 commit into from
Aug 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading