This commit is contained in:
juanifioren 2016-01-20 14:13:22 -03:00
commit 61460de32c
2 changed files with 4 additions and 3 deletions

View file

@ -8,10 +8,11 @@ All notable changes to this project will be documented in this file.
##### Added
- Auto-generation of client ID and SECRET using the admin.
- Validate nonce parameter when using Implicit Flow.
##### Fixed
- Fixed generating RSA key by ignoring value of OIDC_RSA_KEY_FOLDER.
- Make OIDC_IDTOKEN_SUB_GENERATOR to be lazy imported by the location of the function.
- Make OIDC_AFTER_USERLOGIN_HOOK and OIDC_IDTOKEN_SUB_GENERATOR to be lazy imported by the location of the function.
- Problem with a function that generate urls for the /.well-known/openid-configuration/ endpoint.
### [0.2.3] - 2016-01-06

4
DOC.md
View file

@ -110,7 +110,7 @@ If you want to test the provider without getting to deep into this topics you ca
Create a user with: ``python manage.py createsuperuser``.
To create clients use Django admin (if you have it enabled):
Create clients using Django admin (if you have it enabled):
![Client Creation](http://i64.tinypic.com/2dsfgoy.png)
@ -296,7 +296,7 @@ REQUIRED. Used to log the user in. [Read more in Django docs](https://docs.djang
`str`. Default is `/accounts/login/`.
##### OIDC_AFTER_USERLOGIN_HOOK
OPTIONAL. Provide a way to plug into the process after the user has logged in, typically to perform some business logic.
OPTIONAL. A string with the location of your function. Provide a way to plug into the process after the user has logged in, typically to perform some business logic.
Default is:
```python