Skip to content

Commit

Permalink
fix for review
Browse files Browse the repository at this point in the history
  • Loading branch information
itleigns committed Mar 6, 2024
1 parent 2049371 commit 556ae09
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/templates/listVersionsWithMetric.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ module.exports = () => ({
query: schema.api.pagination.concat(
joi.object({
search: joi.forbidden(), // we don't support search for Template list versions with metrics,
startTime: joi.string().isoDate(),
endTime: joi.string().isoDate(),
startTime: joi.string().isoDate().example('1970-01-01T15:00:00Z'),
endTime: joi.string().isoDate().example('1970-01-03T18:00:00Z'),
getCount: joi.forbidden(),
sortBy: joi.forbidden()
})
Expand Down

0 comments on commit 556ae09

Please sign in to comment.