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

Safe HaskellNone
LanguageHaskell2010

Github.PullRequests.ReviewComments

Description

The pull request review comments API as described at http://developer.github.com/v3/pulls/comments/.

Synopsis

Documentation

pullRequestReviewCommentsIO :: Name GithubOwner -> Name Repo -> Id PullRequest -> IO (Either Error (Vector Comment)) Source

All the comments on a pull request with the given ID.

pullRequestReviewComments "thoughtbot" "factory_girl" (Id 256)

pullRequestReviewComment :: Name GithubOwner -> Name Repo -> Id Comment -> IO (Either Error Comment) Source

One comment on a pull request, by the comment's ID.

pullRequestReviewComment "thoughtbot" "factory_girl" (Id 301819)