We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
admin_disable_user never uses the provided username parameter. It will disable the current user - if any:
admin_disable_user
username
def admin_disable_user(self, username): """ Disable a user :param username: :return: """ self.client.admin_disable_user( UserPoolId=self.user_pool_id, Username=self.username, )
It should be:
def admin_disable_user(self, username): """ Disable a user :param username: :return: """ self.client.admin_disable_user( UserPoolId=self.user_pool_id, Username=username, )
The text was updated successfully, but these errors were encountered:
[NabuCasa#46] Make admin_disable_user work
0cd9e17
[#46] Make admin_disable_user work (#171)
1acb64d
Released in 2022.11.0
Sorry, something went wrong.
No branches or pull requests
admin_disable_user
never uses the providedusername
parameter. It will disable the current user - if any:It should be:
The text was updated successfully, but these errors were encountered: