diff --git a/.vscode/launch.json b/.vscode/launch.json index 9e6aebc..686878e 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -14,7 +14,7 @@ "FLASK_ENV": "development", "FLASK_DEBUG": "1" }, - "args": ["run", "--no-debugger"], + "args": ["run", "--no-debugger", "--host", "0.0.0.0"], "justMyCode": false, "jinja": true }, diff --git a/doc/deployment.md b/doc/deployment.md index df379bf..b664821 100644 --- a/doc/deployment.md +++ b/doc/deployment.md @@ -1,9 +1,5 @@ # Deployment -## Automatic Deployment - -[![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy) - ## Docker ```sh diff --git a/project/views/verification_request.py b/project/views/verification_request.py index 6b331ca..73d0b79 100644 --- a/project/views/verification_request.py +++ b/project/views/verification_request.py @@ -59,7 +59,7 @@ def manage_admin_unit_verification_requests_outgoing(id): admin_unit = g.manage_admin_unit params = AdminUnitVerificationRequestSearchParams() - params.target_admin_unit_id = admin_unit.id + params.source_admin_unit_id_admin_unit_id = admin_unit.id requests = get_verification_requests_outgoing_query(params).paginate() if not admin_unit.is_verified and requests.total == 0: