Files
notifications-admin/app/main/__init__.py
Chris Hill-Scott fce4082fff Rename to performance
This is consistent with the old performance platform URLs, which were
gov.uk/performance, and others that we have like /pricing and /features
2021-03-12 13:56:21 +00:00

46 lines
780 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,
performance,
platform_admin,
providers,
register,
returned_letters,
send,
service_settings,
sign_in,
sign_out,
templates,
two_factor,
tour,
uploads,
user_profile,
verify,
)