Skip to content

Commit

Permalink
Small OpenAPI fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastienGllmt committed Mar 19, 2024
1 parent bbb6337 commit d57f499
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/bin/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -1913,7 +1913,7 @@
},
"/asset/mint-burn-history": {
"post": {
"operationId": "ProjectedNftRange",
"operationId": "MintBurnHistory",
"responses": {
"200": {
"description": "",
Expand Down Expand Up @@ -2016,7 +2016,7 @@
}
}
},
"description": "Query any [projected NFT](https://github.com/dcSpark/projected-nft-whirlpool).",
"description": "Query any projected NFT. Learn more[<u>here</u>](https://github.com/dcSpark/projected-nft-whirlpool).",
"security": [],
"parameters": [],
"requestBody": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export class MintRangeController extends Controller {
*/
@SuccessResponse(`${StatusCodes.OK}`)
@Post()
public async projectedNftRange(
public async mintBurnHistory(
@Body()
requestBody: EndpointTypes[typeof route]['input'],
@Res()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const route = Routes.projectedNftEventsRange;
@Route('projected-nft/range')
export class ProjectedNftRangeController extends Controller {
/**
* Query any [projected NFT](https://github.com/dcSpark/projected-nft-whirlpool).
* Query any projected NFT. Learn more[<u>here</u>](https://github.com/dcSpark/projected-nft-whirlpool).
*/
@SuccessResponse(`${StatusCodes.OK}`)
@Post()
Expand Down

0 comments on commit d57f499

Please sign in to comment.