Safe Haskell | None |
---|---|
Language | Haskell2010 |
The repo commits API as described on http://developer.github.com/v3/repos/comments/.
- commentsFor :: Name GithubOwner -> Name Repo -> IO (Either Error (Vector Comment))
- commentsFor' :: Maybe GithubAuth -> Name GithubOwner -> Name Repo -> IO (Either Error (Vector Comment))
- commentsForR :: Name GithubOwner -> Name Repo -> Maybe Count -> GithubRequest k (Vector Comment)
- commitCommentsFor :: Name GithubOwner -> Name Repo -> Name Commit -> IO (Either Error (Vector Comment))
- commitCommentsFor' :: Maybe GithubAuth -> Name GithubOwner -> Name Repo -> Name Commit -> IO (Either Error (Vector Comment))
- commitCommentsForR :: Name GithubOwner -> Name Repo -> Name Commit -> Maybe Count -> GithubRequest k (Vector Comment)
- commitCommentFor :: Name GithubOwner -> Name Repo -> Id Comment -> IO (Either Error Comment)
- commitCommentFor' :: Maybe GithubAuth -> Name GithubOwner -> Name Repo -> Id Comment -> IO (Either Error Comment)
- commitCommentForR :: Name GithubOwner -> Name Repo -> Id Comment -> GithubRequest k Comment
- module Github.Data
Documentation
commentsFor :: Name GithubOwner -> Name Repo -> IO (Either Error (Vector Comment)) Source
All the comments on a Github repo.
commentsFor "thoughtbot" "paperclip"
commentsFor' :: Maybe GithubAuth -> Name GithubOwner -> Name Repo -> IO (Either Error (Vector Comment)) Source
All the comments on a Github repo. With authentication.
commentsFor "thoughtbot" "paperclip"
commentsForR :: Name GithubOwner -> Name Repo -> Maybe Count -> GithubRequest k (Vector Comment) Source
List commit comments for a repository. See https://developer.github.com/v3/repos/comments/#list-commit-comments-for-a-repository
commitCommentsFor :: Name GithubOwner -> Name Repo -> Name Commit -> IO (Either Error (Vector Comment)) Source
Just the comments on a specific SHA for a given Github repo.
commitCommentsFor "thoughtbot" "paperclip" "41f685f6e01396936bb8cd98e7cca517e2c7d96b"
commitCommentsFor' :: Maybe GithubAuth -> Name GithubOwner -> Name Repo -> Name Commit -> IO (Either Error (Vector Comment)) Source
Just the comments on a specific SHA for a given Github repo. With authentication.
commitCommentsFor "thoughtbot" "paperclip" "41f685f6e01396936bb8cd98e7cca517e2c7d96b"
commitCommentsForR :: Name GithubOwner -> Name Repo -> Name Commit -> Maybe Count -> GithubRequest k (Vector Comment) Source
List comments for a single commit. See https://developer.github.com/v3/repos/comments/#list-comments-for-a-single-commit
commitCommentFor :: Name GithubOwner -> Name Repo -> Id Comment -> IO (Either Error Comment) Source
A comment, by its ID, relative to the Github repo.
commitCommentFor "thoughtbot" "paperclip" "669575"
commitCommentFor' :: Maybe GithubAuth -> Name GithubOwner -> Name Repo -> Id Comment -> IO (Either Error Comment) Source
A comment, by its ID, relative to the Github repo.
commitCommentFor "thoughtbot" "paperclip" "669575"
commitCommentForR :: Name GithubOwner -> Name Repo -> Id Comment -> GithubRequest k Comment Source
Get a single commit comment. See https://developer.github.com/v3/repos/comments/#get-a-single-commit-comment
module Github.Data