stable

Clone or download

Read-only

Introduce password update interface

In order to reduce the amount of code to review, this first patch only introduce the new UI with all fields disabled + the logic of display with a new Event. The un translated string to warn people about work in progress was made on purpose because will be renamed in the next patch. Part of story #14552: User preferences goes Burning Parrot Change-Id: I9f7a65ad5963903b9b930596c04f8d7e9a64b635

Modified Files

Name
M plugins/ldap/include/ldapPlugin.php +9 −0 Go to diff View file
M plugins/openidconnectclient/include/openidconnectclientPlugin.php +9 −0 Go to diff View file
M site-content/fr_FR/LC_MESSAGES/tuleap-core.po +12 −0 Go to diff View file
M src/common/Request/RouteCollector.php +7 −0 Go to diff View file
M src/common/User/Account/DisplaySecurityController.php +5 −1 Go to diff View file
A src/common/User/Account/PasswordPreUpdateEvent.php +69 −0 Go to diff View file
M src/common/User/Account/SecurityPresenter.php +19 −1 Go to diff View file
A src/common/User/Account/UpdatePasswordController.php +47 −0 Go to diff View file
M src/common/User/Account/UpdateSessionPreferencesController.php +2 −0 Go to diff View file
A src/common/User/Account/templates/security-password.mustache +37 −0 Go to diff View file
A src/common/User/Account/templates/security-session.mustache +23 −0 Go to diff View file
M src/common/User/Account/templates/security.mustache +5 −22 Go to diff View file
M tests/phpunit/common/User/Account/DisplaySecurityControllerTest.php +87 −3 Go to diff View file