Skip to content

Commit 7d32f79

Browse files
authored
Merge pull request #750 from thomas-mc-work/patch-2
Add MAPS_URL to config
2 parents 0410cf2 + 596bb69 commit 7d32f79

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

configuration/configuration.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,9 @@ def _read_secret(secret_name, default = None):
170170
# Setting this to True will display a "maintenance mode" banner at the top of every page.
171171
MAINTENANCE_MODE = environ.get('MAINTENANCE_MODE', 'False').lower() == 'true'
172172

173+
# Maps provider
174+
MAPS_URL = environ.get('MAPS_URL', None)
175+
173176
# An API consumer can request an arbitrary number of objects =by appending the "limit" parameter to the URL (e.g.
174177
# "?limit=1000"). This setting defines the maximum limit. Setting it to 0 or None will allow an API consumer to request
175178
# all objects by specifying "?limit=0".

0 commit comments

Comments
 (0)