Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ aurs:
- "Nylas <support@nylas.com>"
license: MIT
private_key: "{{ .Env.AUR_SSH_KEY_PATH }}"
git_url: "ssh://aur@aur.archlinux.org/nylas.git"
git_url: "ssh://aur@aur.archlinux.org/nylas-bin.git"
disable: "{{ .IsSnapshot }}"
depends:
- glibc
Expand Down
2 changes: 1 addition & 1 deletion internal/cli/auth/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ The CLI only requires your API Key - Client ID is auto-detected.`,
fmt.Printf(" Please add this callback URI manually in the Nylas dashboard:\n")
fmt.Printf(" %s\n", callbackResult.RequiredURI)
fmt.Println()
fmt.Printf(" Dashboard: https://dashboard.nylas.com/applications\n")
fmt.Printf(" Dashboard: https://dashboard-v3.nylas.com/applications\n")
fmt.Printf(" Navigate to: Your App → Settings → Callback URIs → Add URI\n")
} else if callbackResult.Created {
_, _ = common.Green.Printf(" ✓ Added callback URI: %s\n", callbackResult.RequiredURI)
Expand Down
4 changes: 2 additions & 2 deletions internal/cli/common/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ func GetNylasClient() (ports.NylasClient, error) {
"API key not configured",
"Configure with: nylas auth config",
"Or use environment variable: export NYLAS_API_KEY=<your-key>",
"Get your API key from: https://dashboard.nylas.com",
"Get your API key from: https://dashboard-v3.nylas.com",
)
}

Expand Down Expand Up @@ -144,7 +144,7 @@ func GetAPIKey() (string, error) {
"API key not configured",
"Configure with: nylas auth config",
"Or use environment variable: export NYLAS_API_KEY=<your-key>",
"Get your API key from: https://dashboard.nylas.com",
"Get your API key from: https://dashboard-v3.nylas.com",
)
}

Expand Down
2 changes: 1 addition & 1 deletion internal/cli/setup/wizard_helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ func printCallbackURIManualInstructions(requiredCallbackURI string, err error) {
fmt.Printf(" Please add this callback URI manually in the Nylas dashboard:\n")
fmt.Printf(" %s\n", requiredCallbackURI)
fmt.Println()
fmt.Printf(" Dashboard: https://dashboard.nylas.com/applications\n")
fmt.Printf(" Dashboard: https://dashboard-v3.nylas.com/applications\n")
fmt.Printf(" Navigate to: Your App → Settings → Callback URIs → Add URI\n")
}

Expand Down
Loading