Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
pilcrowonpaper committed Jan 25, 2024
1 parent d252b36 commit a8a37c5
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 25 deletions.
10 changes: 5 additions & 5 deletions docs/pages/tutorials/username-and-password/astro.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ npx degit https://github.com/lucia-auth/examples/tree/v3/astro/username-and-pass

## Update database

Add a `username` and `password` column to your user table.
Add a `username` and `hashed_password` column to your user table.

| column | type | attributes |
| ---------- | -------- | ---------- |
| `username` | `string` | unique |
| `password` | `string` | |
| column | type | attributes |
| ----------------- | -------- | ---------- |
| `username` | `string` | unique |
| `hashed_password` | `string` | |

Create a `DatabaseUserAttributes` interface in the module declaration and add your database columns. By default, Lucia will not expose any database columns to the `User` type. To add a `username` field to it, use the `getUserAttributes()` option.

Expand Down
10 changes: 5 additions & 5 deletions docs/pages/tutorials/username-and-password/nextjs-app.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ npx degit https://github.com/lucia-auth/examples/tree/v3/nextjs-app/username-and

## Update database

Add a `username` and `password` column to your user table.
Add a `username` and `hashed_password` column to your user table.

| column | type | attributes |
| ---------- | -------- | ---------- |
| `username` | `string` | unique |
| `password` | `string` | |
| column | type | attributes |
| ----------------- | -------- | ---------- |
| `username` | `string` | unique |
| `hashed_password` | `string` | |

Create a `DatabaseUserAttributes` interface in the module declaration and add your database columns. By default, Lucia will not expose any database columns to the `User` type. To add a `username` field to it, use the `getUserAttributes()` option.

Expand Down
10 changes: 5 additions & 5 deletions docs/pages/tutorials/username-and-password/nextjs-pages.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ npx degit https://github.com/lucia-auth/examples/tree/v3/nextjs-pages/username-a

## Update database

Add a `username` and `password` column to your user table.
Add a `username` and `hashed_password` column to your user table.

| column | type | attributes |
| ---------- | -------- | ---------- |
| `username` | `string` | unique |
| `password` | `string` | |
| column | type | attributes |
| ----------------- | -------- | ---------- |
| `username` | `string` | unique |
| `hashed_password` | `string` | |

Create a `DatabaseUserAttributes` interface in the module declaration and add your database columns. By default, Lucia will not expose any database columns to the `User` type. To add a `username` field to it, use the `getUserAttributes()` option.

Expand Down
10 changes: 5 additions & 5 deletions docs/pages/tutorials/username-and-password/nuxt.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ npx degit https://github.com/lucia-auth/examples/tree/v3/nuxt/username-and-passw

## Update database

Add a `username` and `password` column to your user table.
Add a `username` and `hashed_password` column to your user table.

| column | type | attributes |
| ---------- | -------- | ---------- |
| `username` | `string` | unique |
| `password` | `string` | |
| column | type | attributes |
| ----------------- | -------- | ---------- |
| `username` | `string` | unique |
| `hashed_password` | `string` | |

Create a `DatabaseUserAttributes` interface in the module declaration and add your database columns. By default, Lucia will not expose any database columns to the `User` type. To add a `username` field to it, use the `getUserAttributes()` option.

Expand Down
10 changes: 5 additions & 5 deletions docs/pages/tutorials/username-and-password/sveltekit.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ npx degit https://github.com/lucia-auth/examples/tree/v3/sveltekit/username-and-

## Update database

Add a `username` and `password` column to your user table.
Add a `username` and `hashed_password` column to your user table.

| column | type | attributes |
| ---------- | -------- | ---------- |
| `username` | `string` | unique |
| `password` | `string` | |
| column | type | attributes |
| ----------------- | -------- | ---------- |
| `username` | `string` | unique |
| `hashed_password` | `string` | |

Create a `DatabaseUserAttributes` interface in the module declaration and add your database columns. By default, Lucia will not expose any database columns to the `User` type. To add a `username` field to it, use the `getUserAttributes()` option.

Expand Down

0 comments on commit a8a37c5

Please sign in to comment.