From d96bd99ef588b201d323a17cc0341d6879f04041 Mon Sep 17 00:00:00 2001 From: Ahmed Fwela Date: Sat, 8 Jun 2024 08:28:17 +0300 Subject: [PATCH] docs: update to include OidcWebStore in oidc usage section --- docs/oidc-usage.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/oidc-usage.md b/docs/oidc-usage.md index 2dc00c3..6050063 100644 --- a/docs/oidc-usage.md +++ b/docs/oidc-usage.md @@ -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.