Files
notifications-admin/app/main/__init__.py
David McDonald 2ba7224a42 Add view for new tour start page
This will replace the current tour start page
2020-10-02 12:46:02 +01:00

46 lines
779 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,
tour,
uploads,
user_profile,
verify,
)