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

45 lines
763 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__)
2019-11-28 14:39:30 +00:00
no_cookie = Blueprint('no_cookie', __name__)
2019-03-25 10:47:00 +00:00
from app.main.views import ( # noqa isort:skip
add_service,
2019-03-25 10:25:05 +00:00
agreement,
api_keys,
broadcast,
2019-03-25 10:25:05 +00:00
choose_account,
code_not_received,
2019-03-25 10:25:05 +00:00
conversation,
2016-05-24 15:52:44 +01:00
dashboard,
2019-03-25 10:25:05 +00:00
email_branding,
feedback,
2019-08-13 16:25:26 +01:00
find_services,
find_users,
2019-03-25 10:25:05 +00:00
forgot_password,
history,
2019-03-25 10:25:05 +00:00
inbound_number,
index,
invites,
jobs,
letter_branding,
2019-03-25 10:25:05 +00:00
manage_users,
new_password,
2017-08-08 10:24:54 +01:00
notifications,
2019-03-25 10:25:05 +00:00
organisations,
platform_admin,
providers,
register,
returned_letters,
2019-03-25 10:25:05 +00:00
send,
service_settings,
sign_in,
sign_out,
templates,
two_factor,
tour,
uploads,
2019-03-25 10:25:05 +00:00
user_profile,
verify,
)