Skip to content

Commit 0e127d0

Browse files
committed
Content related changes
1 parent 05619fc commit 0e127d0

7 files changed

Lines changed: 11 additions & 11 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# LoginRadius CLI
22

3-
`lr` is LoginRadius on the command line. You can perform basic actions of your [LoginRadius Dashboard](https://dashboard.loginradius.com/dashboard) through command line. The actions includes **login, register, logout, email configuration, domain whitelisting etc**.
3+
`lr` is LoginRadius on the command line. You can perform basic actions of your [LoginRadius Admin Console](https://adminconsole.loginradius.com/dashboard) through command line. The actions includes **login, logout, email configuration, domain whitelisting etc**.
44

55
![](./cli_home.png)
66

cmd/add/customField/customFields.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ func NewAddCFCmd() *cobra.Command {
2020
cmd := &cobra.Command{
2121
Use: "custom-field",
2222
Short: "Add the custom field which can be used in a registeration schema",
23-
Long: `Use this command to add up to 5 custom fields to your Auth Page(IDX).`,
23+
Long: `Use this command to add up to 15 custom fields to your Identity Experience Framework (IDX).`,
2424
Example: heredoc.Doc(`$ lr add custom-field -f MyCustomField
2525
MyCustomField is successfully add as your customfields
2626
You can now add the custom field in your registration schema using "lr set schema" command
@@ -44,8 +44,8 @@ func add(fieldName string) error {
4444
return nil
4545
}
4646

47-
if len(regField.Data.CustomFields) >= 5 {
48-
return &cmdutil.FlagError{Err: errors.New("Cannot add more then 5 custom fields.")}
47+
if len(regField.Data.CustomFields) >= 15 {
48+
return &cmdutil.FlagError{Err: errors.New("cannot add more then 15 custom fields")}
4949
}
5050

5151
_, err = api.AddCustomField(fieldName)

cmd/delete/customField/customField.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ func NewDeleteCFCmd() *cobra.Command {
1616
cmd := &cobra.Command{
1717
Use: "custom-field",
1818
Short: "Deletes a custom field",
19-
Long: `Use this command to delete a custom field from your Auth Page(IDX). `,
19+
Long: `Use this command to delete a custom field from your Identity Experience Framework (IDX). `,
2020
Example: heredoc.Doc(`$ lr delete custom-field
2121
? Select the field you Want to delete from the list: MyCF
2222
? Are you Sure you want to delete this custom field? Yes

cmd/demo/demo.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ import (
1313
func NewDemoCmd() *cobra.Command {
1414
cmd := &cobra.Command{
1515
Use: "demo",
16-
Short: "Opens LoginRadius Auth Page (IDX) of your application",
16+
Short: "Opens LoginRadius Identity Experience Framework (IDX) of your application",
1717
Long: heredoc.Doc(`
18-
Use this command to open the LoginRadius Auth Page (IDX) for your app in the browser.
18+
Use this command to open the LoginRadius Identity Experience Framework (IDX) for your app in the browser.
1919
`),
2020
Example: heredoc.Doc(`
21-
# Opens LoginRadius Auth page (IDX) in browser
21+
# Opens LoginRadius Identity Experience Framework (IDX) in browser
2222
$ lr demo
2323
`),
2424
RunE: func(cmd *cobra.Command, args []string) error {

cmd/get/theme/theme.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ func NewThemeCmd() *cobra.Command {
1717
Use: "theme",
1818
Short: "Shows Current/All available themes of the site",
1919
Long: heredoc.Doc(`
20-
Use this command to get the active theme (--active) of the Auth Page (IDX) or to get the list of all available themes (--all).
20+
Use this command to get the active theme (--active) of the Identity Experience Framework (IDX) or to get the list of all available themes (--all).
2121
`),
2222
Example: heredoc.Doc(`
2323
$ lr get theme --all

cmd/set/schema/schema.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ func NewSetSchemaCmd() *cobra.Command {
2121
cmd := &cobra.Command{
2222
Use: "schema",
2323
Short: "Update Registeration Schema",
24-
Long: `Use this command to enable or disable the registration fields for the Auth Page(IDX). You can also manage field configurations such as optional, required, type, and name.`,
24+
Long: `Use this command to enable or disable the registration fields for the Identity Experience Framework (IDX). You can also manage field configurations such as optional, required, type, and name.`,
2525
Example: heredoc.Doc(`# To update the field configuration
2626
$ lr set schema -f my-field
2727
? Enter Field Name: My Field

cmd/set/theme/theme.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ func NewThemeCmd() *cobra.Command {
3333
Use: "theme",
3434
Short: "Changes the theme of the site",
3535
Long: heredoc.Doc(`
36-
Use this command to change the theme of your Auth Page (IDX).
36+
Use this command to change the theme of your Identity Experience Framework (IDX).
3737
`),
3838
Example: heredoc.Doc(`
3939
$ lr set theme --theme <theme>

0 commit comments

Comments
 (0)