mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-10 21:34:10 -05:00
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
45 lines
769 B
Python
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,
|
|
)
|