Files
notifications-admin/app/main/__init__.py
Katie Smith 8a453890e6 Add 'Uploads' hub and navigation
The uploads hub is just a page with text for now - there are no actions
available on the page. It is linked to from a new 'Uploads' menu item on
the left of the page which is only visible if your service has the
`letter` and `upload_letters` permissions and if the current user has
permissions to send messages.
2019-08-09 08:50:48 +01:00

40 lines
655 B
Python

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