8
0
Fork 0
mirror of https://gitlab.federez.net/re2o/re2o synced 2024-05-10 19:46:30 +00:00

Update CHANGELOG.md

This commit is contained in:
chirac 2020-05-21 18:41:48 +02:00 committed by Gabriel Detraz
parent 3fb579b1d7
commit b36e2cc4b3

View file

@ -217,3 +217,16 @@ apt install python3-dev
Make sure that all depending packages (python3-django etc) provided in the new
apt_requirements_radius.txt are installed.
## MR 535 : Routers
It is now possible to use a custom router file, if you want to have mutli database
support, with for example one as master database and one as replica database.
If you want to add a database routers, please fill in in settings_local.py
and add your databse.
Then, add a file "local_routers.py" in folder app re2o, and add your router path
in the settings_local.py file :
```python
LOCAL_ROUTERS = ["re2o.local_routers.DbRouter"]
```