diff options
author | Alexander Foremny <aforemny@posteo.de> | 2023-11-29 05:39:32 +0100 |
---|---|---|
committer | Alexander Foremny <aforemny@posteo.de> | 2023-11-29 05:44:37 +0100 |
commit | c2e4b0a28c050c52f6ed84d6ae1e7172e4b6b08a (patch) | |
tree | 7ea64f2a1bb4f3d78786d81d4603e1479c3087dd /app/Issue.hs | |
parent | 8c0d5f70b4a2e5928dce73769d46a79b2b051f63 (diff) |
support comments
Diffstat (limited to 'app/Issue.hs')
-rw-r--r-- | app/Issue.hs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/Issue.hs b/app/Issue.hs index 73122ef..f8bf0ec 100644 --- a/app/Issue.hs +++ b/app/Issue.hs @@ -30,7 +30,8 @@ data Issue = Issue tags :: [Tag], markers :: [T.Text], rawText :: T.Text, - commentStyle :: G.CommentStyle + commentStyle :: G.CommentStyle, + comments :: [T.Text] } deriving (Show, Binary, Generic, Eq) |