License | BSD-3-Clause |
---|---|
Maintainer | Oleg Grenrus <oleg.grenrus@iki.fi> |
Safe Haskell | None |
Language | Haskell2010 |
The pull request review comments API as described at http://developer.github.com/v3/pulls/comments/.
- pullRequestReviewCommentsIO :: Name Owner -> Name Repo -> Id PullRequest -> IO (Either Error (Vector Comment))
- pullRequestReviewCommentsR :: Name Owner -> Name Repo -> Id PullRequest -> FetchCount -> Request k (Vector Comment)
- pullRequestReviewComment :: Name Owner -> Name Repo -> Id Comment -> IO (Either Error Comment)
- pullRequestReviewCommentR :: Name Owner -> Name Repo -> Id Comment -> Request k Comment
- module GitHub.Data
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)
pullRequestReviewCommentsR :: Name Owner -> Name Repo -> Id PullRequest -> FetchCount -> Request 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 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)
pullRequestReviewCommentR :: Name Owner -> Name Repo -> Id Comment -> Request k Comment Source #
Query a single comment. See https://developer.github.com/v3/pulls/comments/#get-a-single-comment
module GitHub.Data