1
0
Fork 0
forked from forgejo/forgejo

add issue subscriber API

This commit is contained in:
6543 2019-10-29 11:17:45 +01:00
parent c4f9d06855
commit 06daf4e863
No known key found for this signature in database
GPG key ID: A1CA74D27FD13271
5 changed files with 378 additions and 0 deletions

View file

@ -113,3 +113,9 @@ type EditPriorityOption struct {
// required:true
Priority int `json:"priority"`
}
// IssueWatchers list of subscribers of an issue
type IssueWatchers struct {
// required:true
Subscribers []string `json:"subscribers"`
}