diff --git a/DOC.md b/DOC.md index cf35ae6..ac2c723 100644 --- a/DOC.md +++ b/DOC.md @@ -171,21 +171,21 @@ def default_sub_generator(user): return user.id ``` -##### OIDC_TOKEN_EXPIRE -OPTIONAL. Token object expiration after been created. - -`int`. Expressed in seconds. Default is `60*60`. - -##### OIDC_USER_CONSENT_ENABLE +##### OIDC_SKIP_CONSENT_ENABLE OPTIONAL. If enabled, the Server will save the user consent given to a specific client, so that user won't be prompted for the same authorization multiple times. `bool`. Default is `True`. -##### OIDC_USER_CONSENT_EXPIRE +##### OIDC_SKIP_CONSENT_EXPIRE OPTIONAL. User consent expiration after been granted. `int`. Expressed in days. Default is `30*3`. +##### OIDC_TOKEN_EXPIRE +OPTIONAL. Token object expiration after been created. + +`int`. Expressed in seconds. Default is `60*60`. + ## Users And Clients User and client creation it's up to you. This is because is out of the scope in the core implementation of OIDC.