mirror of
https://github.com/status-im/PyGithub.git
synced 2026-08-31 19:01:15 +00:00
Add two_factor_authentication in AuthenticatedUser. (#1972)
Fixes #1971
This commit is contained in:
@@ -367,6 +367,14 @@ class AuthenticatedUser(github.GithubObject.CompletableGithubObject):
|
||||
self._completeIfNotSet(self._url)
|
||||
return self._url.value
|
||||
|
||||
@property
|
||||
def two_factor_authentication(self):
|
||||
"""
|
||||
:type: bool
|
||||
"""
|
||||
self._completeIfNotSet(self._two_factor_authentication)
|
||||
return self._two_factor_authentication.value
|
||||
|
||||
def add_to_emails(self, *emails):
|
||||
"""
|
||||
:calls: `POST /user/emails <http://docs.github.com/en/rest/reference/users#emails>`_
|
||||
@@ -1371,6 +1379,7 @@ class AuthenticatedUser(github.GithubObject.CompletableGithubObject):
|
||||
self._type = github.GithubObject.NotSet
|
||||
self._updated_at = github.GithubObject.NotSet
|
||||
self._url = github.GithubObject.NotSet
|
||||
self._two_factor_authentication = github.GithubObject.NotSet
|
||||
|
||||
def _useAttributes(self, attributes):
|
||||
if "avatar_url" in attributes: # pragma no branch
|
||||
@@ -1457,3 +1466,7 @@ class AuthenticatedUser(github.GithubObject.CompletableGithubObject):
|
||||
self._updated_at = self._makeDatetimeAttribute(attributes["updated_at"])
|
||||
if "url" in attributes: # pragma no branch
|
||||
self._url = self._makeStringAttribute(attributes["url"])
|
||||
if "two_factor_authentication" in attributes:
|
||||
self._two_factor_authentication = self._makeBoolAttribute(
|
||||
attributes["two_factor_authentication"]
|
||||
)
|
||||
|
||||
@@ -226,3 +226,5 @@ class AuthenticatedUser(CompletableGithubObject):
|
||||
def updated_at(self) -> datetime: ...
|
||||
@property
|
||||
def url(self) -> str: ...
|
||||
@property
|
||||
def two_factor_authentication(self) -> bool: ...
|
||||
|
||||
@@ -76,6 +76,7 @@ class AuthenticatedUser(Framework.TestCase):
|
||||
self.assertEqual(self.user.url, "https://api.github.com/users/jacquev6")
|
||||
self.assertEqual(self.user.node_id, "MDQ6VXNlcjMyNzE0Ng==")
|
||||
self.assertEqual(repr(self.user), 'AuthenticatedUser(login="jacquev6")')
|
||||
self.assertTrue(self.user.two_factor_authentication)
|
||||
|
||||
def testEditWithoutArguments(self):
|
||||
self.user.edit()
|
||||
|
||||
@@ -7,5 +7,5 @@ None
|
||||
None
|
||||
200
|
||||
[('status', '200 OK'), ('x-ratelimit-remaining', '4994'), ('content-length', '801'), ('server', 'nginx/1.0.13'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"79f748546e5fc4492505a70de6542183"'), ('date', 'Tue, 08 May 2012 09:51:20 GMT'), ('content-type', 'application/json; charset=utf-8')]
|
||||
{"public_repos":10,"type":"User","url":"https://api.github.com/users/jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","followers":13,"bio":"","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","disk_usage":16692,"plan":{"private_repos":5,"space":614400,"name":"micro","collaborators":1},"html_url":"https://github.com/jacquev6","blog":"http://vincent-jacques.net","login":"jacquev6","email":"vincent@vincent-jacques.net","created_at":"2010-07-09T06:10:06Z","company":"Criteo","location":"Paris, France","total_private_repos":5,"public_gists":1,"following":24,"name":"Vincent Jacques","id":327146,"owned_private_repos":5,"private_gists":5,"collaborators":0,"hireable":false,"node_id":"MDQ6VXNlcjMyNzE0Ng=="}
|
||||
{"public_repos":10,"type":"User","url":"https://api.github.com/users/jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","followers":13,"bio":"","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","disk_usage":16692,"plan":{"private_repos":5,"space":614400,"name":"micro","collaborators":1},"html_url":"https://github.com/jacquev6","blog":"http://vincent-jacques.net","login":"jacquev6","email":"vincent@vincent-jacques.net","created_at":"2010-07-09T06:10:06Z","company":"Criteo","location":"Paris, France","total_private_repos":5,"public_gists":1,"following":24,"name":"Vincent Jacques","id":327146,"owned_private_repos":5,"private_gists":5,"collaborators":0,"hireable":false,"node_id":"MDQ6VXNlcjMyNzE0Ng==","two_factor_authentication":true}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user