lock-user
Prevent user access by locking Clerk authentication accounts to block login attempts and secure your application.
Instructions
Bloqueia um usuário do Clerk, impedindo que ele faça login
Input Schema
Name | Required | Description | Default |
---|---|---|---|
userId | Yes |
Input Schema (JSON Schema)
{
"properties": {
"userId": {
"minLength": 1,
"type": "string"
}
},
"required": [
"userId"
],
"type": "object"
}