create own endpoints for user conversion and apply changed workflow to user form in ui

This commit is contained in:
Eduard Heimbuch
2020-10-22 13:15:54 +02:00
parent 69950f63b3
commit 5b10dc57ac
12 changed files with 296 additions and 67 deletions

View File

@@ -43,7 +43,7 @@ class ChangePasswordNavLink extends React.Component<Props> {
hasPermissionToSetPassword = () => {
const { user } = this.props;
return !user.external && user._links.password;
return user._links.password;
};
}