* feat(suite): Implement Suites Fixes #1230 * Update docs * Fix variable alignment * Prevent always-run endpoint from running if a context placeholder fails to resolve in the URL * Return errors when a context placeholder path fails to resolve * Add a couple of unit tests * Add a couple of unit tests * fix(ui): Update group count properly Fixes #1233 * refactor: Pass down entire config instead of several sub-configs * fix: Change default suite interval and timeout * fix: Deprecate disable-monitoring-lock in favor of concurrency * fix: Make sure there are no duplicate keys * Refactor some code * Update watchdog/watchdog.go * Update web/app/src/components/StepDetailsModal.vue Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * chore: Remove useless log * fix: Set default concurrency to 3 instead of 5 --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
29 lines
958 B
Go
29 lines
958 B
Go
package paging
|
|
|
|
// EndpointStatusParams represents all parameters that can be used for paging purposes
|
|
type EndpointStatusParams struct {
|
|
EventsPage int // Number of the event page
|
|
EventsPageSize int // Size of the event page
|
|
ResultsPage int // Number of the result page
|
|
ResultsPageSize int // Size of the result page
|
|
}
|
|
|
|
// NewEndpointStatusParams creates a new EndpointStatusParams
|
|
func NewEndpointStatusParams() *EndpointStatusParams {
|
|
return &EndpointStatusParams{}
|
|
}
|
|
|
|
// WithEvents sets the values for EventsPage and EventsPageSize
|
|
func (params *EndpointStatusParams) WithEvents(page, pageSize int) *EndpointStatusParams {
|
|
params.EventsPage = page
|
|
params.EventsPageSize = pageSize
|
|
return params
|
|
}
|
|
|
|
// WithResults sets the values for ResultsPage and ResultsPageSize
|
|
func (params *EndpointStatusParams) WithResults(page, pageSize int) *EndpointStatusParams {
|
|
params.ResultsPage = page
|
|
params.ResultsPageSize = pageSize
|
|
return params
|
|
}
|