Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion server/src-lib/Hasura/Eventing/HTTP.hs
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,17 @@ data HTTPRespExtra (a :: TriggerTypes)
, _hreContext :: Maybe ExtraLogContext
}

$(J.deriveToJSON (J.aesonDrop 4 J.snakeCase){J.omitNothingFields=True} ''HTTPRespExtra)
instance J.ToJSON (HTTPRespExtra 'Scheduled) where
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is it possible to define this as instance J.ToJSON (HTTPRespExtra a) where to avoid duplicating ?

toJSON (HTTPRespExtra resp ctxt) = do
case resp of
Left errResp -> J.object ["response" J..= J.toJSON errResp, "context" J..= J.toJSON ctxt]
Right rsp -> J.object ["response" J..= J.toJSON rsp, "context" J..= J.toJSON ctxt]

instance J.ToJSON (HTTPRespExtra 'Event) where
toJSON (HTTPRespExtra resp ctxt) = do
case resp of
Left errResp -> J.object ["response" J..= J.toJSON errResp, "context" J..= J.toJSON ctxt]
Right rsp -> J.object ["response" J..= J.toJSON rsp, "context" J..= J.toJSON ctxt]

instance ToEngineLog (HTTPRespExtra 'Event) Hasura where
toEngineLog resp = (LevelInfo, eventTriggerLogType, J.toJSON resp)
Expand Down