License | BSD-3-Clause |
---|---|
Maintainer | Oleg Grenrus <oleg.grenrus@iki.fi> |
Safe Haskell | None |
Language | Haskell2010 |
The Github issue comments API from http://developer.github.com/v3/issues/comments/.
Synopsis
- commentR :: Name Owner -> Name Repo -> Id Comment -> Request k IssueComment
- commentsR :: 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 RW ()
- editCommentR :: Name Owner -> Name Repo -> Id Comment -> Text -> Request RW Comment
- module GitHub.Data
Documentation
commentR :: 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 :: 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
createCommentR :: Name Owner -> Name Repo -> IssueNumber -> Text -> Request RW Comment Source #
Create a comment. See https://developer.github.com/v3/issues/comments/#create-a-comment
deleteCommentR :: Name Owner -> Name Repo -> Id Comment -> GenRequest MtUnit RW () Source #
Delete a comment. See https://developer.github.com/v3/issues/comments/#delete-a-comment
editCommentR :: Name Owner -> Name Repo -> Id Comment -> Text -> Request RW Comment Source #
Edit a comment. See https://developer.github.com/v3/issues/comments/#edit-a-comment
module GitHub.Data