mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-10-22 19:28:17 +00:00
Instead of viewing PR pipelines in the branches lists, add a separate list for them. The API endpoint for PRs supports pagination (thus I added a lot of pagination-related stuff), the UI doesn't yet though.  Closes #1619 Extends this part of #1640 --------- Co-authored-by: Anbraten <anton@ju60.de>
7 lines
76 B
Go
7 lines
76 B
Go
package model
|
|
|
|
type PaginationData struct {
|
|
Page int64
|
|
PerPage int64
|
|
}
|