From 9a42e904a5eae6c465ab0f6bed6bc0bc97ef55ac Mon Sep 17 00:00:00 2001 From: "Babak K. Shandiz" Date: Tue, 14 Apr 2026 14:37:25 +0100 Subject: [PATCH] fix(discussion/shared): deleted unused fields slice Signed-off-by: Babak K. Shandiz --- pkg/cmd/discussion/shared/fields.go | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 pkg/cmd/discussion/shared/fields.go diff --git a/pkg/cmd/discussion/shared/fields.go b/pkg/cmd/discussion/shared/fields.go deleted file mode 100644 index 0feb789d9..000000000 --- a/pkg/cmd/discussion/shared/fields.go +++ /dev/null @@ -1,25 +0,0 @@ -package shared - -// DiscussionFields lists the field names available for --json output on -// discussion commands. -var DiscussionFields = []string{ - "id", - "number", - "title", - "body", - "url", - "closed", - "stateReason", - "author", - "category", - "labels", - "answered", - "answerChosenAt", - "answerChosenBy", - "comments", - "reactionGroups", - "createdAt", - "updatedAt", - "closedAt", - "locked", -}