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

46 lines
779 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
2019-03-25 10:25:05 +00:00
add_service,
agreement,
api_keys,
broadcast,
2019-03-25 10:25:05 +00:00
choose_account,
code_not_received,
conversation,
dashboard,
email_branding,
feedback,
2019-08-13 16:25:26 +01:00
find_services,
2019-03-25 10:25:05 +00:00
find_users,
forgot_password,
2019-10-18 09:18:51 +01:00
history,
2019-03-25 10:25:05 +00:00
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,
returned_letters,
2019-03-25 10:25:05 +00:00
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,
2020-09-29 14:48:56 +01:00
tour,
2019-08-09 08:44:11 +01:00
uploads,
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
)