From 4c1af06780abd0ba3c1f41c768cec759f6a40cff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ma=C3=ABl=20Kervella?= Date: Sun, 17 Jun 2018 01:16:19 +0000 Subject: [PATCH] Edit changelog --- CHANGELOG.md | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b41b96eb..1ff8ead5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -38,7 +38,7 @@ mkdir -p media/images ## MR 163: Fix install re2o Refactored install_re2o.sh script. -* There are more tools available with it but some fucntion have changed, report to [the dedicated wiki page](for more informations) or run: +* There are more tools available with it but some function have changed, report to [the dedicated wiki page](https://gitlab.federez.net/federez/re2o/wikis/User%20Documentation/Setup%20script)for more informations or run: ``` install_re2o.sh help ``` @@ -46,10 +46,19 @@ install_re2o.sh help -## MR XXX: Cleanup and refactor API +## MR 172: Refactor API -Activate HTTP Authorization passthrough in by adding the following in /etc/apache2/site-available/re2o.conf (example in install_utils/apache2/re2o.conf): +Creates a new (nearly) REST API to expose all models of Re2o. See [the dedicated wiki page](https://gitlab.federez.net/federez/re2o/wikis/API/Raw-Usage) for more details on how to use it. +* Activate HTTP Authorization passthrough in by adding the following in `/etc/apache2/site-available/re2o.conf` (example in `install_utils/apache2/re2o.conf`): ``` WSGIPassAuthorization On ``` +* Activate the API if you want to use it by adding `'api'` to the optional apps in `re2o/settings_local.py`: +``` +OPTIONAL_APPS = ( + ... + 'api', + ... +) +```