Skip to content

Commit c8264cc

Browse files
authored
fix: correct Nylas dashboard URL typo (#15)
1 parent d2d5972 commit c8264cc

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

docs/troubleshooting/api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Invalid API key
5353
nylas auth config
5454

5555
# Verify API key in Nylas Dashboard
56-
# https://dashboardv3.nylas.com → Apps → Your App → API Keys
56+
# https://dashboard-v3.nylas.com → Apps → Your App → API Keys
5757

5858
# Check configured key
5959
nylas auth status

docs/troubleshooting/auth.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ nylas auth config
5353

5454
2. **Verify credentials are correct:**
5555
```bash
56-
# Check your API key on https://dashboardv3.nylas.com
56+
# Check your API key on https://dashboard-v3.nylas.com
5757
# Copy the correct API key
5858
# Copy the correct Grant ID
5959

@@ -85,7 +85,7 @@ cat ~/.config/nylas/config.yaml
8585
**Solutions:**
8686

8787
1. **Get your Grant ID from Nylas Dashboard:**
88-
- Login to https://dashboardv3.nylas.com
88+
- Login to https://dashboard-v3.nylas.com
8989
- Go to "Grants" section
9090
- Copy your Grant ID (format: `grant_xxxx`)
9191

@@ -214,7 +214,7 @@ chmod 600 ~/.config/nylas/config.yaml
214214

215215
```bash
216216
# Step 1: Get your Nylas credentials
217-
# Go to: https://dashboardv3.nylas.com
217+
# Go to: https://dashboard-v3.nylas.com
218218
# Create an app or use existing app
219219
# Get: API Key, Grant ID
220220

@@ -341,7 +341,7 @@ nylas email list grant_account2
341341
### Invalid API key errors:
342342

343343
1. **Verify API key is correct:**
344-
- Login to https://dashboardv3.nylas.com
344+
- Login to https://dashboard-v3.nylas.com
345345
- Go to Apps → Your App → API Keys
346346
- Copy the **correct** API key
347347
- Format should be: `nyk_xxx...`

docs/troubleshooting/faq.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ go install github.com/nylas/cli/cmd/nylas@latest
3939
### Q: What do I need to get started?
4040

4141
**A: You need:**
42-
1. **Nylas account** - Sign up at https://dashboardv3.nylas.com
42+
1. **Nylas account** - Sign up at https://dashboard-v3.nylas.com
4343
2. **API Key** - Create app in dashboard, get API key
4444
3. **Grant ID** - Connect your email account, get grant ID
4545

@@ -51,7 +51,7 @@ go install github.com/nylas/cli/cmd/nylas@latest
5151

5252
**A: Step-by-step:**
5353

54-
1. **Go to:** https://dashboardv3.nylas.com
54+
1. **Go to:** https://dashboard-v3.nylas.com
5555
2. **Create app** (or use existing)
5656
3. **Get API Key:**
5757
- Apps → Your App → API Keys

internal/cli/auth/config.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ func newConfigCmd() *cobra.Command {
2828
Long: `Configure Nylas API credentials.
2929
3030
You can provide credentials via flags or interactively.
31-
Get your credentials from https://dashboardv3.nylas.com
31+
Get your credentials from https://dashboard-v3.nylas.com
3232
3333
The CLI only requires your API Key - Client ID is auto-detected.`,
3434
RunE: func(cmd *cobra.Command, args []string) error {
@@ -50,7 +50,7 @@ The CLI only requires your API Key - Client ID is auto-detected.`,
5050
// Interactive mode if API key not provided
5151
if apiKey == "" {
5252
fmt.Println("Configure Nylas API Credentials")
53-
fmt.Println("Get your API key from: https://dashboardv3.nylas.com")
53+
fmt.Println("Get your API key from: https://dashboard-v3.nylas.com")
5454
fmt.Println()
5555

5656
fmt.Print("API Key (hidden): ")

internal/ui/server_demo_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -471,8 +471,8 @@ func TestCommandsJSContainsNoDashboardOldURL(t *testing.T) {
471471
content := string(data)
472472

473473
// Verify old dashboard URL is not present
474-
if strings.Contains(content, "dashboard.nylas.com") && !strings.Contains(content, "dashboardv3.nylas.com") {
475-
t.Errorf("%s contains old dashboard URL (dashboard.nylas.com instead of dashboardv3.nylas.com)", path)
474+
if strings.Contains(content, "dashboard.nylas.com") && !strings.Contains(content, "dashboard-v3.nylas.com") {
475+
t.Errorf("%s contains old dashboard URL (dashboard.nylas.com instead of dashboard-v3.nylas.com)", path)
476476
}
477477
}
478478
}

0 commit comments

Comments
 (0)