fix: unified resource server list queries order column (#108094)

This commit is contained in:
Mustafa Sencer Özcan
2025-07-16 08:09:31 +02:00
committed by GitHub
parent 5b82e05697
commit 4a779c4ccb
16 changed files with 123 additions and 43 deletions
+6 -3
View File
@@ -242,10 +242,13 @@ func (r *resourceHistoryReadLatestRVResponse) Results() (*resourceHistoryReadLat
}
type historyListRequest struct {
ResourceVersion, Limit, Offset int64
Folder string
Options *resourcepb.ListOptions
ResourceVersion int64
Limit int64
Offset int64
Folder string
Options *resourcepb.ListOptions
}
type sqlResourceHistoryListRequest struct {
sqltemplate.SQLTemplate
Request *historyListRequest