You've already forked woodpecker
mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-06-24 22:06:51 +02:00
Add PR pipeline list (#1641)
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>
This commit is contained in:
6
server/model/pull_request.go
Normal file
6
server/model/pull_request.go
Normal file
@ -0,0 +1,6 @@
|
||||
package model
|
||||
|
||||
type PullRequest struct {
|
||||
Index int64 `json:"index"`
|
||||
Title string `json:"title"`
|
||||
}
|
Reference in New Issue
Block a user