File tree Expand file tree Collapse file tree 17 files changed +17
-17
lines changed
Expand file tree Collapse file tree 17 files changed +17
-17
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ main = do
99 (Right comment) -> putStrLn $ formatComment comment
1010
1111formatComment comment =
12- (Github. githubUserLogin $ Github. gistCommentUser comment) ++ " \n " ++
12+ (Github. githubOwnerLogin $ Github. gistCommentUser comment) ++ " \n " ++
1313 (formatGithubDate $ Github. gistCommentUpdatedAt comment) ++ " \n\n " ++
1414 (Github. gistCommentBody comment)
1515
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ main = do
1010 (Right comments) -> putStrLn $ intercalate " \n\n " $ map formatComment comments
1111
1212formatComment comment =
13- (Github. githubUserLogin $ Github. gistCommentUser comment) ++ " \n " ++
13+ (Github. githubOwnerLogin $ Github. gistCommentUser comment) ++ " \n " ++
1414 (formatGithubDate $ Github. gistCommentUpdatedAt comment) ++ " \n\n " ++
1515 (Github. gistCommentBody comment)
1616
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ main = do
99 possibleComment
1010
1111formatComment comment =
12- (Github. githubUserLogin $ Github. issueCommentUser comment) ++
12+ (Github. githubOwnerLogin $ Github. issueCommentUser comment) ++
1313 " commented " ++
1414 (show $ Github. fromGithubDate $ Github. issueCommentUpdatedAt comment) ++
1515 " \n " ++ (Github. issueCommentBody comment)
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ main = do
1111 putStrLn $ intercalate " \n\n " $ map formatComment issues
1212
1313formatComment comment =
14- (Github. githubUserLogin $ Github. issueCommentUser comment) ++
14+ (Github. githubOwnerLogin $ Github. issueCommentUser comment) ++
1515 " commented " ++
1616 (show $ Github. fromGithubDate $ Github. issueCommentUpdatedAt comment) ++
1717 " \n " ++ (Github. issueCommentBody comment)
Original file line number Diff line number Diff line change @@ -33,6 +33,6 @@ formatEvent event = formatEvent' event (Github.eventType event)
3333 formatEvent' event Github. Assigned =
3434 " Issue assigned to " ++ loginName event ++ " on " ++ createdAt event
3535
36- loginName = Github. githubUserLogin . Github. eventActor
36+ loginName = Github. githubOwnerLogin . Github. eventActor
3737createdAt = show . Github. fromGithubDate . Github. eventCreatedAt
3838withCommitId event f = maybe " " f (Github. eventCommitId event)
Original file line number Diff line number Diff line change @@ -33,6 +33,6 @@ formatEvent event = formatEvent' event (Github.eventType event)
3333 formatEvent' event Github. Assigned =
3434 " Issue assigned to " ++ loginName event ++ " on " ++ createdAt event
3535
36- loginName = Github. githubUserLogin . Github. eventActor
36+ loginName = Github. githubOwnerLogin . Github. eventActor
3737createdAt = show . Github. fromGithubDate . Github. eventCreatedAt
3838withCommitId event f = maybe " " f (Github. eventCommitId event)
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ formatEvent event =
3535 formatEvent' event Github. Assigned =
3636 " assigned to " ++ loginName event ++ " on " ++ createdAt event
3737
38- loginName = Github. githubUserLogin . Github. eventActor
38+ loginName = Github. githubOwnerLogin . Github. eventActor
3939createdAt = show . Github. fromGithubDate . Github. eventCreatedAt
4040withCommitId event f = maybe " " f (Github. eventCommitId event)
4141issueNumber = show . Github. issueNumber . fromJust . Github. eventIssue
Original file line number Diff line number Diff line change @@ -19,6 +19,6 @@ formatMilestone milestone =
1919formatDueOn Nothing = " "
2020formatDueOn (Just milestoneDate) = " , is due on " ++ dueOn milestoneDate
2121
22- loginName = Github. githubUserLogin . Github. milestoneCreator
22+ loginName = Github. githubOwnerLogin . Github. milestoneCreator
2323createdAt = show . Github. fromGithubDate . Github. milestoneCreatedAt
2424dueOn = show . Github. fromGithubDate
Original file line number Diff line number Diff line change @@ -19,6 +19,6 @@ formatMilestone milestone =
1919formatDueOn Nothing = " "
2020formatDueOn (Just milestoneDate) = " , is due on " ++ dueOn milestoneDate
2121
22- loginName = Github. githubUserLogin . Github. milestoneCreator
22+ loginName = Github. githubOwnerLogin . Github. milestoneCreator
2323createdAt = show . Github. fromGithubDate . Github. milestoneCreatedAt
2424dueOn = show . Github. fromGithubDate
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ main = do
99 possibleIssue
1010
1111formatIssue issue =
12- (Github. githubUserLogin $ Github. issueUser issue) ++
12+ (Github. githubOwnerLogin $ Github. issueUser issue) ++
1313 " opened this issue " ++
1414 (show $ Github. fromGithubDate $ Github. issueCreatedAt issue) ++ " \n " ++
1515 (Github. issueState issue) ++ " with " ++
You can’t perform that action at this time.
0 commit comments