Safe Haskell | None |
---|---|
Language | Haskell2010 |
The pull request review comments API as described at http://developer.github.com/v3/pulls/comments/.
- pullRequestReviewCommentsIO :: Name GithubOwner -> Name Repo -> Id PullRequest -> IO (Either Error (Vector Comment))
- pullRequestReviewCommentsR :: Name GithubOwner -> Name Repo -> Id PullRequest -> Maybe Count -> GithubRequest k (Vector Comment)
- pullRequestReviewComment :: Name GithubOwner -> Name Repo -> Id Comment -> IO (Either Error Comment)
- pullRequestReviewCommentR :: Name GithubOwner -> Name Repo -> Id Comment -> GithubRequest k Comment
- module Github.Data
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)
pullRequestReviewCommentsR :: Name GithubOwner -> Name Repo -> Id PullRequest -> Maybe Count -> GithubRequest k (Vector Comment) Source
List comments on a pull request. See https://developer.github.com/v3/pulls/comments/#list-comments-on-a-pull-request
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)
pullRequestReviewCommentR :: Name GithubOwner -> Name Repo -> Id Comment -> GithubRequest k Comment Source
Get a single comment. See https://developer.github.com/v3/pulls/comments/#get-a-single-comment
module Github.Data