Skip to content

Commit

Permalink
Add missing comment to projected NFT controller
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastienGllmt committed Dec 29, 2023
1 parent 382454f commit a0a8f97
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 0 additions & 2 deletions .env
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,3 @@ PGPASSFILE="$(realpath secrets/.pgpass)"
# as this command will gracefully fallback to PGPASSFILE if no password is specified
# However, some dev tools like pgtyped & zapatos don't support .pgpass files
DATABASE_URL=postgresql://${PGUSER}:${PGPASSWORD}@${POSTGRES_HOST}:${POSTGRES_PORT}/${POSTGRES_DB}
# Needed for PgTyped
PGURI=$DATABASE_URL
1 change: 1 addition & 0 deletions docs/bin/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -1808,6 +1808,7 @@
}
}
},
"description": "Query any [projected NFT](https://github.com/dcSpark/projected-nft-whirlpool).",
"security": [],
"parameters": [],
"requestBody": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ const route = Routes.projectedNftEventsRange;

@Route('projected-nft/range')
export class ProjectedNftRangeController extends Controller {
/**
* Query any [projected NFT](https://github.com/dcSpark/projected-nft-whirlpool).
*/
@SuccessResponse(`${StatusCodes.OK}`)
@Post()
public async projectedNftRange(
Expand Down

0 comments on commit a0a8f97

Please sign in to comment.