aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md2
-rw-r--r--gn_auth/auth/requests.py6
2 files changed, 6 insertions, 2 deletions
diff --git a/README.md b/README.md
index d72ed81..4146493 100644
--- a/README.md
+++ b/README.md
@@ -146,7 +146,7 @@ $ yoyo new -m "<description of the migration>" ./migrations/auth/
The command will ask whether you want to save the migration configuration, e.g.
```bash
-$ yoyo new --config=yoyo.auth.ini -m "testing a new migration"
+$ yoyo new --database="sqlite:////tmp/test-auth.db" --migration-table=_yoyo_migration -m "testing a new migration" ./migrations/auth/
Error: could not open editor!
Created file ./migrations/auth/20221103_02_HBzwk-testing-a-new-migration.py
Save migration configuration to yoyo.ini?
diff --git a/gn_auth/auth/requests.py b/gn_auth/auth/requests.py
index 00e9b35..e876641 100644
--- a/gn_auth/auth/requests.py
+++ b/gn_auth/auth/requests.py
@@ -1,6 +1,10 @@
"""Utilities to deal with requests."""
+import werkzeug
from flask import request
def request_json() -> dict:
"""Retrieve the JSON sent in a request."""
- return request.json or dict(request.form) or {}
+ try:
+ return request.json
+ except werkzeug.exceptions.UnsupportedMediaType:
+ return dict(request.form) or {}