github-0.30: Access to the GitHub API, v3.
Safe HaskellNone
LanguageHaskell2010

GitHub.Endpoints.Repos.Collaborators

Description

The repo collaborators API as described on http://developer.github.com/v3/repos/collaborators/.

Synopsis

Documentation

collaboratorPermissionOnR Source #

Arguments

:: forall (rw :: RW). Name Owner

Repository owner

-> Name Repo

Repository name

-> Name User

Collaborator to check permissions of.

-> GenRequest ('MtJSON :: MediaType Type) rw CollaboratorWithPermission 

isCollaboratorOnR Source #

Arguments

:: forall (rw :: RW). Name Owner

Repository owner

-> Name Repo

Repository name

-> Name User

Collaborator?

-> GenRequest ('MtStatus :: MediaType Type) rw Bool 

addCollaboratorR Source #

Arguments

:: Name Owner

Repository owner

-> Name Repo

Repository name

-> Name User

Collaborator to add

-> GenRequest ('MtJSON :: MediaType Type) 'RW (Maybe RepoInvitation)