Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: update to include OidcWebStore in oidc usage section #86

Merged
merged 1 commit into from
Jun 8, 2024
Merged
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
4 changes: 2 additions & 2 deletions docs/oidc-usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,11 +84,11 @@ you can use [![package:jose_plus][jose_plus_image]][jose_plus_link] to help you.

#### store

an instance of `OidcStore`, we provide 2 types of stores out of the box, depending on your use case:
an instance of `OidcStore`, we provide 3 types of stores out of the box, depending on your use case:

1. `OidcMemoryStore` from [package:oidc_core](oidc_core.md); which stores the auth state in memory (good for CLI apps or during testing).
2. `OidcDefaultStore` from [package:oidc_default_store](oidc_default_store.md); which persists the auth state on disk or `localStorage` on web, And tries to encrypt the data if possible.

3. `OidcWebStore` from [package:oidc_web_core](oidc_web_core.md); which persists the auth state on `localStorage`/`session_storage` on web.
#### settings

settings to control the behavior of the instance.
Expand Down
Loading