Skip to content

Commit

Permalink
Merge pull request #3 from prplx/FIX-files-sorting
Browse files Browse the repository at this point in the history
Fix media files DescCreated sorting param, add AscUpdated, DescUpdated.
  • Loading branch information
imagekitio authored Oct 27, 2022
2 parents 084cee5 + efb1392 commit 2e64325
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion api/media/assets.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ const (
AscName Sort = "ASC_NAME"
DescName Sort = "DESC_NAME"
AscCreated Sort = "ASC_CREATED"
DescCreated Sort = "ASC_CREATED"
DescCreated Sort = "DESC_CREATED"
AscUpdated Sort = "ASC_UPDATED"
DescUpdated Sort = "DESC_UPDATED"
AscHeight Sort = "ASC_HEIGHT"
DescHeight Sort = "DESC_HEIGHT"
AscWidth Sort = "ASC_WIDTH"
Expand Down

0 comments on commit 2e64325

Please sign in to comment.