Skip to content

Commit

Permalink
fix: ORV2-2792 Document applicationQueueStatus query parameter (#1604)
Browse files Browse the repository at this point in the history
  • Loading branch information
praju-aot authored Sep 19, 2024
1 parent 84c5625 commit 56c4375
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -96,10 +96,9 @@ export class GetApplicationQueryParamsDto extends PageOptionsDto {
@ApiProperty({
example: `${Object.values(ApplicationQueueStatus).join(',')}`,
description:
'A string representing the application queue status order for query results. ' +
'If unspecified, the results will not follow any specific order. ' +
'The format involves a status code, with possible values being case-sensitive and must align with those defined in the schema. ' +
'Start ordering using a status code, and optionally add more by joining them with commas. ' +
'The query parameter allows for filtering results based on applicationQueueStatus. ' +
'Multiple application queue statuses can be specified and should be comma-separated. ' +
'The values are case-sensitive and must match those defined in the schema. ' +
`Possible values are: ${Object.values(ApplicationQueueStatus).join(', ')}. ` +
'Syntax: <status1,status2>',
required: false,
Expand Down

0 comments on commit 56c4375

Please sign in to comment.