Files
notifications-admin/app/main/__init__.py
T

39 lines
642 B
Python
Raw Normal View History

2015-11-20 16:22:44 +00:00
from flask import Blueprint
2019-03-25 10:47:00 +00:00
main = Blueprint('main', __name__)
from app.main.views import ( # noqa isort:skip
2019-03-25 10:25:05 +00:00
add_service,
agreement,
api_keys,
choose_account,
code_not_received,
conversation,
dashboard,
email_branding,
feedback,
find_users,
forgot_password,
inbound_number,
2016-02-29 17:35:21 +00:00
index,
2019-03-25 10:25:05 +00:00
invites,
jobs,
letter_branding,
manage_users,
new_password,
notifications,
organisations,
platform_admin,
providers,
register,
send,
service_settings,
2016-02-29 17:35:21 +00:00
sign_in,
sign_out,
styleguide,
2019-03-25 10:25:05 +00:00
templates,
two_factor,
2016-02-29 17:35:21 +00:00
user_profile,
2019-03-25 10:25:05 +00:00
verify,
2015-12-18 10:26:56 +00:00
)