generated from salesforcecli/plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7fba9af
commit 57772dd
Showing
18 changed files
with
1,966 additions
and
1,323 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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"description": "create a user for a scratch org", | ||
"examples": [ | ||
"sfdx force:user:create", | ||
"sfdx force:user:create -a testuser1 -f config/project-user-def.json", | ||
"sfdx force:user:create [email protected] [email protected] permsets=DreamHouse", | ||
"sfdx force:user:create -f config/project-user-def.json [email protected] generatepassword=true" | ||
], | ||
"flags": { | ||
"alias": "set an alias for the created username to reference within the CLI", | ||
"definitionfile": "file path to a user definition" | ||
}, | ||
"userNotCreated": "User must be created before %s", | ||
"licenseLimitExceeded": "There are no available user licenses for the user profile \"%s\".", | ||
"duplicateUsername": "The username \"%s\" already exists in this or another Salesforce org. Usernames must be unique across all Salesforce orgs.", | ||
"profileNameNotFound": "Profile name \"%s\" not found in target org. Do you need to push source?", | ||
"success": "Successfully created user \"%s\" with ID %s for org %s.%sYou can see more details about this user by running \"sfdx force:user:display -u %s\"." | ||
} |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"description": "displays information about a user of a scratch org", | ||
"examples": ["sfdx force:user:display", "sfdx force:user:display -u [email protected] --json"] | ||
} |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"description": "lists all users of a scratch org", | ||
"examples": [ | ||
"sfdx force:user:list", | ||
"sfdx force:user:list -u [email protected] --json", | ||
"sfdx force:user:list --json > tmp/MyUserList.json" | ||
] | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"description": "generate a password for scratch org users", | ||
"examples": [ | ||
"sfdx force:user:password:generate", | ||
"sfdx force:user:password:generate -u [email protected] --json", | ||
"sfdx force:user:password:generate -o \"[email protected],[email protected],[email protected]\"" | ||
], | ||
"flags": { | ||
"onBehalfOf": "comma-separated list of usernames or aliases to assign the password to" | ||
}, | ||
"noSelfSetAction": "Create a scratch org with the enableSetPasswordInApi org security setting set to TRUE and try again.", | ||
"success": "Successfully set the password \"%s\" for user %s.", | ||
"successMultiple": "Successfully set passwords:%s", | ||
"viewWithCommand": "You can see the password again by running \"sfdx force:user:display -u %s\"." | ||
} |
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"description": "assign a permission set to one or more users of an org", | ||
"examples": [ | ||
"sfdx force:user:permset:assign -n DreamHouse", | ||
"sfdx force:user:permset:assign -n DreamHouse -u [email protected]", | ||
"sfdx force:user:permset:assign -n DreamHouse -o \"[email protected],user2,user3\"" | ||
], | ||
"flags": { | ||
"onBehalfOf": "comma-separated list of usernames or aliases to assign the permission set to", | ||
"name": "TEST DESC" | ||
} | ||
} |
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 was deleted.
Oops, something went wrong.
Oops, something went wrong.