-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3101 from Vojtech-Sassmann/fixSponPasswd
Core - generate password for sponsored user
- Loading branch information
Showing
4 changed files
with
13 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1152,7 +1152,8 @@ public interface MembersManager { | |
* @param vo virtual organization for the member | ||
* @param namespace namespace for selecting password module | ||
* @param name a map containing the full name or its parts (mandatory: firstName, lastName; optionally: titleBefore, titleAfter) | ||
* @param password password | ||
* @param password password, if the password is empty, and the `sendActivationLink` is set to true, this method will | ||
* generate a random password for the created user | ||
* @param email (optional) preferred email that will be set to the created user. If no email | ||
* is provided, "[email protected]" is used. | ||
* @param sponsor sponsoring user or null for the caller | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1445,7 +1445,8 @@ public interface MembersManagerBl { | |
* @param vo virtual organization | ||
* @param namespace used for selecting external system in which guest user account will be created | ||
* @param name a map containing the full name or its parts (mandatory: firstName, lastName; optionally: titleBefore, titleAfter) | ||
* @param password password | ||
* @param password password, if the password is empty, and the `sendActivationLink` is set to true, this method will | ||
* generate a random password for the created user | ||
* @param email (optional) preferred email that will be set to the created user. If no email | ||
* is provided, "[email protected]" is used. | ||
* @param sponsor sponsoring user | ||
|
@@ -1474,7 +1475,8 @@ public interface MembersManagerBl { | |
* @param vo virtual organization | ||
* @param namespace used for selecting external system in which guest user account will be created | ||
* @param name a map containing the full name or its parts (mandatory: firstName, lastName; optionally: titleBefore, titleAfter) | ||
* @param password password | ||
* @param password password, if the password is empty, and the `sendActivationLink` is set to true, this method will | ||
* generate a random password for the created user | ||
* @param email (optional) preferred email that will be set to the created user. If no email | ||
* is provided, "[email protected]" is used. | ||
* @param sponsor sponsoring user | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters