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
6 changes: 3 additions & 3 deletions docs/guide/application-side/session-access.md
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ await signUp(credentials, undefined, { preventLoginFlow: true })
```

:::info
You can also pass the `callbackUrl` option to redirect a user to a certain page, after he's completed the action. This can be useful when a user attempts to open a page (`/protected`) but has to go through external authentication (e.g., via their google account) first.
You can also pass the `callbackUrl` option to redirect a user to a certain page, after they completed the action. This can be useful when a user attempts to open a page (`/protected`) but has to go through external authentication (e.g., via their google account) first.
:::

:::warning Local / Refresh Only
Expand Down Expand Up @@ -229,7 +229,7 @@ await signIn(credentials, { callbackUrl: 'https://nuxt.org', external: true })
:::

:::info
You can also pass the `callbackUrl` option to redirect a user to a certain page, after he's completed the action. This can be useful when a user attempts to open a page (`/protected`) but has to go through external authentication (e.g., via their google account) first.
You can also pass the `callbackUrl` option to redirect a user to a certain page, after they completed the action. This can be useful when a user attempts to open a page (`/protected`) but has to go through external authentication (e.g., via their google account) first.
:::

### `signOut`
Expand All @@ -255,7 +255,7 @@ const { signOut } = useAuth()
```

:::info
You can also pass the `callbackUrl` option to redirect a user to a certain page, after he's completed the action. This can be useful when a user attempts to open a page (`/protected`) but has to go through external authentication (e.g., via their google account) first.
You can also pass the `callbackUrl` option to redirect a user to a certain page, after they completed the action. This can be useful when a user attempts to open a page (`/protected`) but has to go through external authentication (e.g., via their google account) first.
:::

### `refreshToken`
Expand Down
2 changes: 1 addition & 1 deletion docs/guide/getting-started/choose-provider.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ If you are still unsure, below are some tables to help you pick:
| Static apps ("nuxi generate") | ❌ | βœ… | βœ…
| [Guest mode](/guide/application-side/protecting-pages#guest-mode) | βœ… | βœ… | βœ…
| [App-side middleware](/guide/application-side/protecting-pages) | βœ… | βœ… | βœ…
| [Server-side middleware](/guide/authjs/server-side/session-access#endpoint-protection) | βœ… | βœ… | βœ…
| [Server-side middleware](/guide/authjs/server-side/session-access#endpoint-protection) | βœ… | ❌ | ❌
| Pre-made login-page | βœ… (impacts bundle-size) | ❌ | ❌
| Database-adapters, server-side callback-hooks | βœ… | ❌ | ❌

Expand Down