github-0.5.0: Access to the Github API, v3.

Safe HaskellNone

Github.Issues.Comments

Description

The Github issue comments API from http://developer.github.com/v3/issues/comments/.

Synopsis

Documentation

comment :: String -> String -> Int -> IO (Either Error IssueComment)Source

A specific comment, by ID.

 comment "thoughtbot" "paperclip" 1468184

comments :: String -> String -> Int -> IO (Either Error [IssueComment])Source

All comments on an issue, by the issue's number.

 comments "thoughtbot" "paperclip" 635