Files
notifications-admin/app/main/__init__.py
Chris Hill-Scott 18d464d4f0 Add some views for selecting broadcast areas
These are just so we have some pages to click through for now. They
don’t use real templates, or any of the broadcast stuff from the
database.

But I think it’s useful to get some skeleton pages in first so that we
can see the map etc working in production, then build on that, without
having to do it all in one mega PR.

For that reason there are two short term things I’ve done in this commit
which should be revisited soon:
- no tests for the endpoints
- data about which areas are selected is stored in the session
2020-07-08 10:27:42 +01:00

45 lines
769 B
Python

from flask import Blueprint
main = Blueprint('main', __name__)
no_cookie = Blueprint('no_cookie', __name__)
from app.main.views import ( # noqa isort:skip
add_service,
agreement,
api_keys,
broadcast,
choose_account,
code_not_received,
conversation,
dashboard,
email_branding,
feedback,
find_services,
find_users,
forgot_password,
history,
inbound_number,
index,
invites,
jobs,
letter_branding,
manage_users,
new_password,
notifications,
organisations,
platform_admin,
providers,
register,
returned_letters,
send,
service_settings,
sign_in,
sign_out,
styleguide,
templates,
two_factor,
uploads,
user_profile,
verify,
)