Merge branch 'v0.2.x' of https://github.com/juanifioren/django-oidc-provider into v0.2.x
This commit is contained in:
commit
61460de32c
2 changed files with 4 additions and 3 deletions
|
@ -8,10 +8,11 @@ All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
##### Added
|
##### Added
|
||||||
- Auto-generation of client ID and SECRET using the admin.
|
- Auto-generation of client ID and SECRET using the admin.
|
||||||
|
- Validate nonce parameter when using Implicit Flow.
|
||||||
|
|
||||||
##### Fixed
|
##### Fixed
|
||||||
- Fixed generating RSA key by ignoring value of OIDC_RSA_KEY_FOLDER.
|
- 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.
|
- Problem with a function that generate urls for the /.well-known/openid-configuration/ endpoint.
|
||||||
|
|
||||||
### [0.2.3] - 2016-01-06
|
### [0.2.3] - 2016-01-06
|
||||||
|
|
4
DOC.md
4
DOC.md
|
@ -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``.
|
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)
|
![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/`.
|
`str`. Default is `/accounts/login/`.
|
||||||
|
|
||||||
##### OIDC_AFTER_USERLOGIN_HOOK
|
##### 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:
|
Default is:
|
||||||
```python
|
```python
|
||||||
|
|
Loading…
Reference in a new issue