Skip to content

Commit

Permalink
Docs: Fix function footprint for getAllUserSessions (#1080)
Browse files Browse the repository at this point in the history
  • Loading branch information
plushugh authored Sep 7, 2023
1 parent 1524c5f commit c0e2a08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion documentation/content/reference/lucia/interfaces/auth.md
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ const keys = await auth.getAllUserKeys(userId);
Validate the user id and get all valid sessions of a user. Includes active and idle sessions, but not dead sessions.

```ts
const getAllUserKeys: (userId: string) => Promise<Session[]>;
const getAllUserSessions: (userId: string) => Promise<Session[]>;
```

##### Parameters
Expand Down

0 comments on commit c0e2a08

Please sign in to comment.