feat: require user to change password on first login

This commit is contained in:
Methapon2001 2024-04-10 10:21:14 +07:00
parent 8cc442df18
commit 27e545adcd

View file

@ -18,6 +18,7 @@ export class KeycloakController extends Controller {
return await createUser(body.username, body.password, {
firstName: body.firstName,
lastName: body.lastName,
requiredActions: ["UPDATE_PASSWORD"],
});
}