0
0
mirror of https://github.com/go-gitea/gitea.git synced 2026-04-18 17:03:41 +02:00

add GroupID field to IssueMeta struct

This commit is contained in:
☙◦ The Tablet ❀ GamerGirlandCo ◦❧ 2025-11-23 23:08:23 -05:00
parent 7fd3459a43
commit 7b9f439183
No known key found for this signature in database
GPG Key ID: 924A5F6AF051E87C

View File

@ -272,8 +272,9 @@ func (it IssueTemplate) Type() IssueTemplateType {
type IssueMeta struct {
Index int64 `json:"index"`
// owner of the issue's repo
Owner string `json:"owner"`
Name string `json:"repo"`
Owner string `json:"owner"`
Name string `json:"repo"`
GroupID int64 `json:"group_id"`
}
// LockIssueOption options to lock an issue