Implements the Github Orgs API: http://developer.github.com/v3/orgs/
Implements the Github Orgs API: http://developer.github.com/v3/orgs/
(add-team-member id user options)
Add a team member.
Add a team member.
(add-team-repo id user repo options)
Add a team repo.
Add a team repo.
(conceal org user options)
Conceal a user's membership.
Conceal a user's membership.
(create-hook org config options)
Create a hook. Options are: events -- A sequence of event strings. Only 'push' by default. active -- true or false; determines if the hook is actually triggered on pushes.
Create a hook. Options are: events -- A sequence of event strings. Only 'push' by default. active -- true or false; determines if the hook is actually triggered on pushes.
(create-team org name options)
Create a team. Options are: repo-names -- Repos that belong to this team. permission -- pull (default): team can pull but not push or admin. push: team can push and pull but not admin. admin: team can push, pull, and admin.
Create a team. Options are: repo-names -- Repos that belong to this team. permission -- pull (default): team can pull but not push or admin. push: team can push and pull but not admin. admin: team can push, pull, and admin.
(delete-member org user options)
Remove a member from all teams and eliminate access to the organization's repositories.
Remove a member from all teams and eliminate access to the organization's repositories.
(delete-team-member id user options)
Remove a team member.
Remove a team member.
(delete-team-repo id user repo options)
Remove a repo from a team.
Remove a repo from a team.
(edit-hook org id config options)
Edit an existing hook. Options are: config -- Modified config. events -- A sequence of event strings. Replaces the events. active -- true or false; determines if the hook is actually triggered on pushes.
Edit an existing hook. Options are: config -- Modified config. events -- A sequence of event strings. Replaces the events. active -- true or false; determines if the hook is actually triggered on pushes.
(edit-org org options)
Edit an organization. Options are: billing-email -- Billing email address. company -- The name of the company the organization belongs to. email -- Publically visible email address. location -- Organization location. name -- Name of the organization.
Edit an organization. Options are: billing-email -- Billing email address. company -- The name of the company the organization belongs to. email -- Publically visible email address. location -- Organization location. name -- Name of the organization.
(edit-team id options)
Edit a team. Options are: name -- New team name. permissions -- pull (default): team can pull but not push or admin. push: team can push and pull but not admin. admin: team can push, pull, and admin.
Edit a team. Options are: name -- New team name. permissions -- pull (default): team can pull but not push or admin. push: team can push and pull but not admin. admin: team can push, pull, and admin.
(hooks org options)
List the hooks on an organization.
List the hooks on an organization.
(list-team-repos id options)
List the team repositories.
List the team repositories.
(member? org user options)
Check whether or not a user is a member.
Check whether or not a user is a member.
(members org & [options])
List the members in an organization. A member is a user that belongs to at least one team. If authenticated, both concealed and public members will be returned. Otherwise, only public members.
List the members in an organization. A member is a user that belongs to at least one team. If authenticated, both concealed and public members will be returned. Otherwise, only public members.
(orgs options)
List the public and private organizations for the currently authenticated user.
List the public and private organizations for the currently authenticated user.
(public-member? org user & [options])
Check if a user is a public member or not.
Check if a user is a public member or not.
(public-members org & [options])
List the public members of an organization.
List the public members of an organization.
(repos org & [options])
All repositories in the organization
All repositories in the organization
(specific-hook org id options)
Get a specific hook.
Get a specific hook.
(specific-org org & [options])
Get a specific organization.
Get a specific organization.
(specific-team id options)
Get a specific team.
Get a specific team.
(team-member? id user options)
Get a specific team member.
Get a specific team member.
(team-members id options)
List members of a team.
List members of a team.
(team-repo? id user repo options)
Check if a repo is managed by this team.
Check if a repo is managed by this team.
(teams org options)
List the teams for an organization.
List the teams for an organization.
(user-orgs user)
List the public organizations for a user.
List the public organizations for a user.
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close