aboutsummaryrefslogtreecommitdiffstats
path: root/app/History/IssueEvent.hs
diff options
context:
space:
mode:
authorLibravatar Alexander Foremny <aforemny@posteo.de>2023-12-03 13:29:00 +0100
committerLibravatar Alexander Foremny <aforemny@posteo.de>2023-12-03 13:29:00 +0100
commit32c76fb1f411896a4727ba2a76cdfc9dcd3dc48a (patch)
tree9237f6dcd3c165d864861ab9533c0ed4a093d2a7 /app/History/IssueEvent.hs
parent22c71e24edc8655f15c8dba02244b8e6d059da5c (diff)
feat: color patches
Diffstat (limited to 'app/History/IssueEvent.hs')
-rw-r--r--app/History/IssueEvent.hs8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/History/IssueEvent.hs b/app/History/IssueEvent.hs
index 933b047..0900f13 100644
--- a/app/History/IssueEvent.hs
+++ b/app/History/IssueEvent.hs
@@ -1,24 +1,24 @@
module History.IssueEvent (IssueEvent (..)) where
-import Data.Text qualified as T
import History.CommitHash (CommitHash)
import Issue (Issue)
+import Patch (Patch)
data IssueEvent
= IssueCreated
{ hash :: CommitHash,
issue :: Issue,
- patch :: T.Text
+ patch :: Patch
}
| IssueChanged
{ hash :: CommitHash,
oldIssue :: Issue,
issue :: Issue,
- patch :: T.Text
+ patch :: Patch
}
| IssueDeleted
{ hash :: CommitHash,
issue :: Issue,
- patch :: T.Text
+ patch :: Patch
}
deriving (Show)