Safe Haskell | None |
---|---|
Language | Haskell2010 |
The organization members API as described on http://developer.github.com/v3/orgs/members/.
- membersOf :: Name Organization -> IO (Either Error (Vector SimpleOwner))
- membersOf' :: Maybe GithubAuth -> Name Organization -> IO (Either Error (Vector SimpleOwner))
- membersOfR :: Name Organization -> Maybe Count -> GithubRequest k (Vector SimpleOwner)
- module Github.Data
Documentation
membersOf :: Name Organization -> IO (Either Error (Vector SimpleOwner)) Source
All the users who are members of the specified organization, | without authentication.
membersOf "thoughtbot"
membersOf' :: Maybe GithubAuth -> Name Organization -> IO (Either Error (Vector SimpleOwner)) Source
All the users who are members of the specified organization, | with or without authentication.
membersOf' (Just $ GithubOAuth "token") "thoughtbot"
membersOfR :: Name Organization -> Maybe Count -> GithubRequest k (Vector SimpleOwner) Source
All the users who are members of the specified organization.
See https://developer.github.com/v3/orgs/members/#members-list
module Github.Data