diff options
author | reivilibre <oliverw@matrix.org> | 2021-11-17 14:10:57 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-17 14:10:57 +0000 |
commit | 0d86f6334ae5dc6be76b5bf2eea9ac5677fb89e8 (patch) | |
tree | c9a42469768d6c6bfa9a90e751079966b21a909f /synapse/rest | |
parent | Fix running complement.sh script. (#11368) (diff) | |
download | synapse-0d86f6334ae5dc6be76b5bf2eea9ac5677fb89e8.tar.xz |
Rename `get_access_token_for_user_id` method to `create_access_token_for_user_id` (#11369)
Diffstat (limited to 'synapse/rest')
-rw-r--r-- | synapse/rest/admin/users.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/rest/admin/users.py b/synapse/rest/admin/users.py index 23a8bf1fdb..ccd9a2a175 100644 --- a/synapse/rest/admin/users.py +++ b/synapse/rest/admin/users.py @@ -898,7 +898,7 @@ class UserTokenRestServlet(RestServlet): if auth_user.to_string() == user_id: raise SynapseError(400, "Cannot use admin API to login as self") - token = await self.auth_handler.get_access_token_for_user_id( + token = await self.auth_handler.create_access_token_for_user_id( user_id=auth_user.to_string(), device_id=None, valid_until_ms=valid_until_ms, |