Skip to content

Commit

Permalink
fix(changelog): fix bad preview
Browse files Browse the repository at this point in the history
  • Loading branch information
jacquesfize committed Nov 29, 2024
1 parent a9fb419 commit 8ce91a4
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,19 @@ CHANGELOG

**⚠️ Notes de version**

- Remplacer l'initialisation du `login_manager` par celle du `auth_manager` lors de l'initialisation de votre
application Flask comme dans l'exemple ci-dessous :
```python
from pypnusershub.auth import auth_manager
providers_config = [
{
"module" : "pypnusershub.auth.providers.default.LocalProvider",
"id_provider":"local_provider"
},
]
- Remplacer l'initialisation du `login_manager` par celle du `auth_manager` lors de l'initialisation de votre
application Flask comme dans l'exemple ci-dessous :

```python
from pypnusershub.auth import auth_manager
providers_config = [
{
"module" : "pypnusershub.auth.providers.default.LocalProvider",
"id_provider":"local_provider"
},
]
auth_manager.init_app(app,providers_declaration=providers_config)
```
```



Expand Down

0 comments on commit 8ce91a4

Please sign in to comment.