mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
a2eb0316c8
This allows providing a custom URL for password resets. If provided the disable_reset_password option is ignored, the password reset API is disabled, and the button provided in the UI to reset the password redirects users to the configured endpoint. Closes #1934, Closes #2854 Co-authored-by: you1996 <youssri@flyweight.tech>
9 lines
375 B
JavaScript
9 lines
375 B
JavaScript
import "@testing-library/jest-dom";
|
|
|
|
document.body.setAttribute("data-basepath", "");
|
|
document.body.setAttribute("data-duoselfenrollment", "true");
|
|
document.body.setAttribute("data-rememberme", "true");
|
|
document.body.setAttribute("data-resetpassword", "true");
|
|
document.body.setAttribute("data-resetpasswordcustomurl", "");
|
|
document.body.setAttribute("data-theme", "light");
|