NOISSUE - Allow sorting (#3052)

Signed-off-by: Musilah <nataleigh.nk@gmail.com>
This commit is contained in:
Nataly Musilah
2025-08-18 15:54:26 +03:00
committed by GitHub
parent b942a42271
commit 2e3f52fdbf
16 changed files with 149 additions and 19 deletions
+6 -4
View File
@@ -28,10 +28,12 @@ const (
LimitKey = "limit"
OnlyTotal = "only_total"
NameOrder = "name"
IDOrder = "id"
AscDir = "asc"
DescDir = "desc"
NameOrder = "name"
IDOrder = "id"
AscDir = "asc"
DescDir = "desc"
UpdatedAtOrder = "updated_at"
CreatedAtOrder = "created_at"
MetadataKey = "metadata"
NameKey = "name"