mirror of
https://github.com/GSA/notifications-api.git
synced 2026-09-02 17:48:36 -04:00
We can define the API properly in future work. I've used a separate blueprint from "broadcasts" since this API is purely internal, and it's helpful to make it clear it's specific to govuk-alerts.
9 lines
169 B
Python
9 lines
169 B
Python
from flask import jsonify
|
|
|
|
from app.v2.govuk_alerts import v2_govuk_alerts_blueprint
|
|
|
|
|
|
@v2_govuk_alerts_blueprint.route('')
|
|
def get_broadcasts():
|
|
return jsonify({})
|