diff options
author | Alexander Foremny <aforemny@posteo.de> | 2023-12-15 03:13:39 +0100 |
---|---|---|
committer | Alexander Foremny <aforemny@posteo.de> | 2023-12-15 03:22:40 +0100 |
commit | d370389451094804c3a642dc42426d210f1d49c1 (patch) | |
tree | 79f32c72f73cdc1fea1285091a7e41b5c79adc05 /app/Issue.hs | |
parent | 01a14ef0d873e99cf8d284d2bb07ddf2389a6e4c (diff) |
feat: add `search` command
Diffstat (limited to 'app/Issue.hs')
-rw-r--r-- | app/Issue.hs | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/app/Issue.hs b/app/Issue.hs index 27f6801..d58d14d 100644 --- a/app/Issue.hs +++ b/app/Issue.hs @@ -83,10 +83,6 @@ internalTags :: Issue -> [Tag] internalTags issue@(Issue {..}) = concat [ [ Tag "id" $ Just issue.id, - Tag "title" $ Just title, - -- TODO Remove @rawText internal tag - -- - -- Tag "rawText" $ Just rawText, Tag "createdAt" $ Just $ T.pack $ show $ utctDay provenance.first.date, Tag "modifiedAt" $ Just $ T.pack $ show $ utctDay provenance.last.date, Tag "author" $ Just provenance.first.author.name, |