1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-22 02:08:36 +00:00

add issue subscriber API

This commit is contained in:
6543
2019-10-29 11:17:45 +01:00
parent c4f9d06855
commit 06daf4e863
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"`
}