Skip to content

Commit

Permalink
Fix various docs issues (#910)
Browse files Browse the repository at this point in the history
  • Loading branch information
pilcrowonpaper authored Aug 1, 2023
1 parent d7f6f43 commit d6bac7b
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .auri/$1o6v0zfv.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ type: "minor" # "major", "minor", "patch"
---

Add experimental OAuth helpers:
-`createOAuth2AuthorizationUrl()`
- `createOAuth2AuthorizationUrl()`
- `createOAuth2AuthorizationUrlWithPKCE()`
- `validateOAuth2AuthorizationCode()`
- `decodeIdToken()`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const auth = lucia({
### Adapters for database drivers and ORMs

- [`better-sqlite3`](/database-adapters/better-sqlite3): SQLite
- [libSQL](/database-adapters/libSQL): libSQL (Turso)
- [libSQL](/database-adapters/libsql): libSQL (Turso)
- [Mongoose](/database-adapters/mongoose): MongoDB
- [`mysql2`](/database-adapters/mysql2): MySQL
- [`pg`](/database-adapters/pg): PostgreSQL
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const auth = lucia({
### Adapters for database drivers and ORMs

- [`better-sqlite3`](/database-adapters/better-sqlite3): SQLite
- [libSQL](/database-adapters/libSQL): libSQL (Turso)
- [libSQL](/database-adapters/libsql): libSQL (Turso)
- [Mongoose](/database-adapters/mongoose): MongoDB
- [`mysql2`](/database-adapters/mysql2): MySQL
- [`pg`](/database-adapters/pg): PostgreSQL
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ const auth = lucia({
### Adapters for database drivers and ORMs

- [`better-sqlite3`](/database-adapters/better-sqlite3): SQLite
- [libSQL](/database-adapters/libSQL): libSQL (Turso)
- [libSQL](/database-adapters/libsql): libSQL (Turso)
- [Mongoose](/database-adapters/mongoose): MongoDB
- [`mysql2`](/database-adapters/mysql2): MySQL
- [`pg`](/database-adapters/pg): PostgreSQL
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ const auth = lucia({
### Adapters for database drivers and ORMs

- [`better-sqlite3`](/database-adapters/better-sqlite3): SQLite
- [libSQL](/database-adapters/libSQL): libSQL (Turso)
- [libSQL](/database-adapters/libsql): libSQL (Turso)
- [Mongoose](/database-adapters/mongoose): MongoDB
- [`mysql2`](/database-adapters/mysql2): MySQL
- [`pg`](/database-adapters/pg): PostgreSQL
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ const auth = lucia({
### Adapters for database drivers and ORMs

- [`better-sqlite3`](/database-adapters/better-sqlite3): SQLite
- [libSQL](/database-adapters/libSQL): libSQL (Turso)
- [libSQL](/database-adapters/libsql): libSQL (Turso)
- [Mongoose](/database-adapters/mongoose): MongoDB
- [`mysql2`](/database-adapters/mysql2): MySQL
- [`pg`](/database-adapters/pg): PostgreSQL
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ const auth = lucia({
### Adapters for database drivers and ORMs

- [`better-sqlite3`](/database-adapters/better-sqlite3): SQLite
- [libSQL](/database-adapters/libSQL): libSQL (Turso)
- [libSQL](/database-adapters/libsql): libSQL (Turso)
- [Mongoose](/database-adapters/mongoose): MongoDB
- [`mysql2`](/database-adapters/mysql2): MySQL
- [`postgres`](/database-adapters/postgres): PostgreSQL
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ const auth = lucia({
### Adapters for database drivers and ORMs

- [`better-sqlite3`](/database-adapters/better-sqlite3): SQLite
- [libSQL](/database-adapters/libSQL): libSQL (Turso)
- [libSQL](/database-adapters/libsql): libSQL (Turso)
- [Mongoose](/database-adapters/mongoose): MongoDB
- [`mysql2`](/database-adapters/mysql2): MySQL
- [`pg`](/database-adapters/pg): PostgreSQL
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export const auth = lucia({
### Adapters for database drivers and ORMs

- [`better-sqlite3`](/database-adapters/better-sqlite3): SQLite
- [libSQL](/database-adapters/libSQL): libSQL (Turso)
- [libSQL](/database-adapters/libsql): libSQL (Turso)
- [Mongoose](/database-adapters/mongoose): MongoDB
- [`mysql2`](/database-adapters/mysql2): MySQL
- [`pg`](/database-adapters/pg): PostgreSQL
Expand Down
2 changes: 1 addition & 1 deletion documentation/content/main/1.basics/0.database.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ There are 2 types of adapters provided by Lucia: Regular adapters, and session a
We currently provide the following adapters:

- [`better-sqlite3`](/database-adapters/better-sqlite3)
- [libSQL](/database-adapters/libSQL)
- [libSQL](/database-adapters/libsql)
- [Cloudflare D1](/database-adapters/cloudflare-d1)
- [Mongoose](/database-adapters/mongoose)
- [`mysql2`](/database-adapters/mysql2)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ You can add additional columns to store user attributes.

```sql
CREATE TABLE user (
id VARCHAR(31) NOT NULL PRIMARY KEY
id VARCHAR(15) NOT NULL PRIMARY KEY
);
```

Expand Down
2 changes: 1 addition & 1 deletion documentation/content/main/2.database-adapters/libsql.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ You can add additional columns to store user attributes.

```sql
CREATE TABLE user (
id VARCHAR(31) NOT NULL PRIMARY KEY
id VARCHAR(15) NOT NULL PRIMARY KEY
);
```

Expand Down
2 changes: 1 addition & 1 deletion documentation/content/main/2.database-adapters/mysql2.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ You can add additional columns to store user attributes.

```sql
CREATE TABLE auth_user (
id VARCHAR(31) NOT NULL PRIMARY KEY
id VARCHAR(15) NOT NULL PRIMARY KEY
);
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ You can add additional columns to store user attributes.

```sql
CREATE TABLE auth_user (
id VARCHAR(31) NOT NULL PRIMARY KEY,
id VARCHAR(15) NOT NULL PRIMARY KEY,
);
```

Expand Down

0 comments on commit d6bac7b

Please sign in to comment.