Safe Haskell | None |
---|---|
Language | Haskell2010 |
GitHub.Endpoints.Repos.Comments
Description
The repo commits API as described on http://developer.github.com/v3/repos/comments/.
Synopsis
- commentsForR :: forall (k :: RW). Name Owner -> Name Repo -> FetchCount -> Request k (Vector Comment)
- commitCommentsForR :: forall (k :: RW). Name Owner -> Name Repo -> Name Commit -> FetchCount -> Request k (Vector Comment)
- commitCommentForR :: forall (k :: RW). Name Owner -> Name Repo -> Id Comment -> Request k Comment
- module GitHub.Data
Documentation
commentsForR :: forall (k :: RW). Name Owner -> Name Repo -> FetchCount -> Request k (Vector Comment) Source #
List commit comments for a repository. See https://developer.github.com/v3/repos/comments/#list-commit-comments-for-a-repository
commitCommentsForR :: forall (k :: RW). Name Owner -> Name Repo -> Name Commit -> FetchCount -> Request k (Vector Comment) Source #
List comments for a single commit. See https://developer.github.com/v3/repos/comments/#list-comments-for-a-single-commit
commitCommentForR :: forall (k :: RW). Name Owner -> Name Repo -> Id Comment -> Request k Comment Source #
Query a single commit comment. See https://developer.github.com/v3/repos/comments/#get-a-single-commit-comment
module GitHub.Data