----------------------------------------------------------------------------- -- | -- License : BSD-3-Clause -- Maintainer : Oleg Grenrus -- -- The organization members API as described on -- . module GitHub.Endpoints.Organizations.OutsideCollaborators ( outsideCollaboratorsR, ) where import GitHub.Data import GitHub.Internal.Prelude import Prelude () -- | All the users who are outside collaborators of the specified organization. -- -- See outsideCollaboratorsR :: Name Organization -> FetchCount -> Request k (Vector SimpleUser) outsideCollaboratorsR organization = pagedQuery ["orgs", toPathPart organization, "outside_collaborators"] []