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

44 lines
722 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,
api_keys,
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,
manage_users,
new_password,
notifications,
organisations,
2021-03-11 10:40:44 +00:00
performance,
2019-03-25 10:25:05 +00:00
platform_admin,
2021-08-27 17:39:04 +01:00
pricing,
2019-03-25 10:25:05 +00:00
providers,
register,
2021-12-06 15:59:13 +00:00
security_policy,
2019-03-25 10:25:05 +00:00
send,
service_settings,
2016-02-29 17:35:21 +00:00
sign_in,
sign_out,
2019-03-25 10:25:05 +00:00
templates,
2020-09-29 14:48:56 +01:00
tour,
2021-08-27 17:39:04 +01:00
two_factor,
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,
2021-05-07 18:10:07 +01:00
webauthn_credentials,
2015-12-18 10:26:56 +00:00
)