2

Adopt Tabulator for the requests log

This commit is contained in:
2026-03-12 21:01:34 +01:00
parent c213054f82
commit 9273c0ae69
10 changed files with 433 additions and 339 deletions

View File

@@ -286,9 +286,12 @@ type Overview struct {
}
type EventPage struct {
Items []Event `json:"items"`
Page int `json:"page"`
Limit int `json:"limit"`
HasPrev bool `json:"has_prev"`
HasNext bool `json:"has_next"`
Items []Event `json:"items"`
Data []Event `json:"data"`
Page int `json:"page"`
Limit int `json:"limit"`
HasPrev bool `json:"has_prev"`
HasNext bool `json:"has_next"`
LastPage int `json:"last_page"`
TotalItems int64 `json:"total_items"`
}