github-0.16.0: Access to the GitHub API, v3.

LicenseBSD-3-Clause
MaintainerOleg Grenrus <oleg.grenrus@iki.fi>
Safe HaskellNone
LanguageHaskell2010

GitHub.Endpoints.PullRequests.ReviewComments

Description

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

Synopsis

Documentation

pullRequestReviewCommentsIO :: Name Owner -> 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 Owner -> 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)