Change Password support for Console (#457)

- Account change password endpoints
- Change account password modal
- Grouped account settings and service accounts
- Removed the SuperAdmin credentials from almost all places, only
  missing place is Oauth login
- Renamed service-accounts UI labels to account in Menu

Co-authored-by: Daniel Valdivia <hola@danielvaldivia.com>
This commit is contained in:
Lenin Alevski
2020-12-07 17:11:08 -06:00
committed by GitHub
parent 1ce18043d5
commit e2d86354fc
39 changed files with 1478 additions and 262 deletions

View File

@@ -42,7 +42,7 @@ func registerLogoutHandlers(api *operations.ConsoleAPI) {
}
// logout() call Expire() on the provided consoleCredentials
func logout(credentials ConsoleCredentials) {
func logout(credentials ConsoleCredentialsI) {
credentials.Expire()
}