mirror of
https://github.com/portainer/portainer.git
synced 2025-08-08 07:15:23 +02:00
* feat(authtication): Rename all usernames to lowercase * feat(authentication): Remove database migration (#3580) * feat(authentication): Make UserByUsername compare usernames case-insensitively (#3580) * feat(authentication): validate new username case-insensitively (#3580) Co-authored-by: Simon Meng <simon.meng@portainer.io>
This commit is contained in:
parent
46dec01fe3
commit
24b1894a84
2 changed files with 7 additions and 2 deletions
|
@ -29,7 +29,7 @@ angular.module('portainer.app').controller('UsersController', [
|
|||
$scope.checkUsernameValidity = function () {
|
||||
var valid = true;
|
||||
for (var i = 0; i < $scope.users.length; i++) {
|
||||
if ($scope.formValues.Username === $scope.users[i].Username) {
|
||||
if ($scope.formValues.Username.toLocaleLowerCase() === $scope.users[i].Username.toLocaleLowerCase()) {
|
||||
valid = false;
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue