0
0
mirror of https://github.com/go-gitea/gitea.git synced 2026-05-11 04:55:34 +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 db7da61b74
commit cf7e7d820a
No known key found for this signature in database
GPG Key ID: 924A5F6AF051E87C

View File

@ -277,8 +277,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