Support OPTIONS method for all API endpoints

This commit is contained in:
Lucas Verney 2019-01-17 09:10:00 +01:00
parent 5083f002d2
commit 15fcb04368
2 changed files with 7 additions and 3 deletions

View File

@ -101,10 +101,10 @@ def get_app(config):
app.route("/api/v1/ics/visits.ics", ["GET", "OPTIONS"],
api_routes.ics_feed_v1)
app.route("/api/v1/search", "POST", api_routes.search_v1)
app.route("/api/v1/search", ["POST", "OPTIONS"], api_routes.search_v1)
app.route("/api/v1/opendata", "GET", api_routes.opendata_index_v1)
app.route("/api/v1/opendata/postal_codes", "GET",
app.route("/api/v1/opendata", ["GET", "OPTIONS"], api_routes.opendata_index_v1)
app.route("/api/v1/opendata/postal_codes", ["GET", "OPTIONS"],
api_routes.opendata_postal_codes_v1)
app.route("/api/v1/metadata", ["GET", "OPTIONS"], api_routes.metadata_v1)

View File

@ -439,6 +439,10 @@ def opendata_index_v1():
GET /api/v1/opendata
"""
if bottle.request.method == 'OPTIONS':
# CORS
return {}
return {
"postal_codes": "/api/v1/opendata/postal_codes"
}