generated from anoadragon453/nio-template
-
Notifications
You must be signed in to change notification settings - Fork 4
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 #6 from elokapina/jaywink/invite-users
Add "users invite" command
- Loading branch information
Showing
6 changed files
with
122 additions
and
10 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
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
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 |
---|---|---|
@@ -1,4 +1,14 @@ | ||
HELP_USERS = """List or manage users. | ||
Without any subcommands, lists users. Actually that's the only thing it does for now :P | ||
Without any subcommands, lists users. Other subcommands: | ||
* `invite` - Invite one or more users. | ||
For help on subcommands, give the subcommand with a "help" parameter. | ||
""" | ||
|
||
HELP_USERS_INVITE = """Invite one or more users. | ||
Takes one or more email address as parameters. Creates the users in the identity provider, | ||
marking their emails as verified. Then sends them an email with a password reset link. | ||
""" |
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
email-validator>=1.1.2 | ||
matrix-nio[e2e]>=0.8.0 | ||
Markdown>=3.1.1 | ||
python-keycloak>=0.24.0 | ||
|
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