From cf7e7d820a98047043bece9bfe1dc45fe251438a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=98=99=E2=97=A6=20The=20Tablet=20=E2=9D=80=20GamerGirla?= =?UTF-8?q?ndCo=20=E2=97=A6=E2=9D=A7?= Date: Sun, 23 Nov 2025 23:08:23 -0500 Subject: [PATCH] add GroupID field to IssueMeta struct --- modules/structs/issue.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/modules/structs/issue.go b/modules/structs/issue.go index f108cf3d0a..d1292da617 100644 --- a/modules/structs/issue.go +++ b/modules/structs/issue.go @@ -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