Safe Haskell | None |
---|---|
Language | Haskell2010 |
GitHub.Endpoints.Issues.Comments
Description
The Github issue comments API from http://developer.github.com/v3/issues/comments/.
Synopsis
- commentR :: forall (k :: RW). Name Owner -> Name Repo -> Id Comment -> Request k IssueComment
- commentsR :: forall (k :: RW). Name Owner -> Name Repo -> IssueNumber -> FetchCount -> Request k (Vector IssueComment)
- createCommentR :: Name Owner -> Name Repo -> IssueNumber -> Text -> Request 'RW Comment
- deleteCommentR :: Name Owner -> Name Repo -> Id Comment -> GenRequest ('MtUnit :: MediaType Type) 'RW ()
- editCommentR :: Name Owner -> Name Repo -> Id Comment -> Text -> Request 'RW Comment
- module GitHub.Data
Documentation
commentR :: forall (k :: RW). Name Owner -> Name Repo -> Id Comment -> Request k IssueComment Source #
Query a single comment. See https://developer.github.com/v3/issues/comments/#get-a-single-comment
commentsR :: forall (k :: RW). Name Owner -> Name Repo -> IssueNumber -> FetchCount -> Request k (Vector IssueComment) Source #
List comments on an issue. See https://developer.github.com/v3/issues/comments/#list-comments-on-an-issue
deleteCommentR :: Name Owner -> Name Repo -> Id Comment -> GenRequest ('MtUnit :: MediaType Type) 'RW () Source #
module GitHub.Data