mirror of
https://github.com/status-im/PyGithub.git
synced 2026-08-31 10:51:14 +00:00
Organization.remove_members, .add_public_members and .remove_public_members
This commit is contained in:
+3
-3
@@ -77,7 +77,7 @@
|
||||
/orgs/:org/members/:user
|
||||
========================
|
||||
- GET: `` (TODO SOON)
|
||||
- DELETE: `` (TODO SOON)
|
||||
- DELETE: `Organization.remove_members( user )`
|
||||
|
||||
/orgs/:org/public_members
|
||||
=========================
|
||||
@@ -86,8 +86,8 @@
|
||||
/orgs/:org/public_members/:user
|
||||
===============================
|
||||
- GET: `` (TODO SOON)
|
||||
- PUT: `` (TODO SOON)
|
||||
- DELETE: `` (TODO SOON)
|
||||
- PUT: `Organization.add_public_members( user )`
|
||||
- DELETE: `Organization.remove_public_members( user )`
|
||||
|
||||
/orgs/:org/repos
|
||||
================
|
||||
|
||||
@@ -46,8 +46,8 @@ Organization = GithubObject(
|
||||
"disk_usage", "collaborators", "billing_email", "plan", "private_gists",
|
||||
"total_private_repos", "owned_private_repos",
|
||||
),
|
||||
ExtendedListAttribute( "public_members", NamedUser ),
|
||||
ExtendedListAttribute( "members", NamedUser ),
|
||||
ExtendedListAttribute( "public_members", NamedUser, True, True ),
|
||||
ExtendedListAttribute( "members", NamedUser, removable = True ),
|
||||
Editable( [], [ "billing_email", "blog", "company", "email", "location", "name" ] ),
|
||||
)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user