stable

Clone or download

Read-only

Transfer SSH Keys management to dedicated tab

Everything should work in dedicated tab as it worked in fat page. The git/gerrit button was kept in the original page as it will be moved in a dedicated page later on with all the gerrit related stuff. Part of story #14552 User preferences goes Burning Parrot Change-Id: I15ca599eaba8d26f9eb1fbaeb5698d946f9e670f

Modified Files

Name
M site-content/fr_FR/LC_MESSAGES/tuleap-core.po +18 −0 Go to diff View file
M src/common/Request/RouteCollector.php +14 −0 Go to diff View file
M src/common/User/Account/DisplayKeysTokensController.php +1 −0 Go to diff View file
M src/common/User/Account/KeysTokensPresenter.php +6 −1 Go to diff View file
A src/common/User/Account/SSHKeyPresenter.php +50 −0 Go to diff View file
A src/common/User/Account/SSHKeysPresenter.php +49 −0 Go to diff View file
M src/common/User/Account/templates/keys-tokens.mustache +4 −0 Go to diff View file
A src/common/User/Account/templates/ssh-keys.mustache +86 −0 Go to diff View file
M src/common/User/PreferencesPresenter.class.php +2 −58 Go to diff View file
A src/common/User/SSHKey/SSHKeyCreateController.php +68 −0 Go to diff View file
A src/common/User/SSHKey/SSHKeyDeleteController.php +68 −0 Go to diff View file
M src/common/User/User.class.php +9 −6 Go to diff View file
M src/templates/user/shell.mustache +0 −62 Go to diff View file
D src/templates/user/ssh-keys-modal.mustache +0 −23 Go to diff View file
D src/www/account/editsshkeys.php +0 −32 Go to diff View file
M src/www/scripts/account/keys-tokens.ts +75 −23 Go to diff View file
M src/www/scripts/tuleap/account-maintenance.js +2 −42 Go to diff View file
M src/www/themes/BurningParrot/css/account/includes/_keys-tokens.scss +9 −0 Go to diff View file
M src/www/themes/common/css/utils/_account-maintenance.scss +1 −6 Go to diff View file
M tests/lib/Builders/HTTPRequestBuilder.php +17 −7 Go to diff View file
M tests/lib/Builders/LayoutBuilder.php +6 −29 Go to diff View file
A tests/lib/Builders/LayoutInspector.php +42 −0 Go to diff View file
A tests/lib/Builders/TestLayout.php +67 −0 Go to diff View file
M tests/phpunit/common/User/Account/DisplayKeysTokensControllerTest.php +19 −1 Go to diff View file
A tests/phpunit/common/User/SSHKey/SSHKeyCreateControllerTest.php +84 −0 Go to diff View file
A tests/phpunit/common/User/SSHKey/SSHKeyDeleteControllerTest.php +84 −0 Go to diff View file