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
|
2016-02-29 17:35:21 +00:00
|
|
|
add_service,
|
2019-03-25 10:25:05 +00:00
|
|
|
agreement,
|
|
|
|
|
api_keys,
|
2020-07-06 10:53:14 +01:00
|
|
|
broadcast,
|
2019-03-25 10:25:05 +00:00
|
|
|
choose_account,
|
2016-02-29 17:35:21 +00:00
|
|
|
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,
|
2016-05-11 09:43:55 +01:00
|
|
|
feedback,
|
2019-08-13 16:25:26 +01:00
|
|
|
find_services,
|
2018-07-06 11:10:14 +01:00
|
|
|
find_users,
|
2019-03-25 10:25:05 +00:00
|
|
|
forgot_password,
|
2019-10-18 09:18:51 +01:00
|
|
|
history,
|
2019-03-25 10:25:05 +00:00
|
|
|
inbound_number,
|
|
|
|
|
index,
|
|
|
|
|
invites,
|
|
|
|
|
jobs,
|
2019-01-31 16:56:35 +00:00
|
|
|
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,
|
2019-12-17 17:23:00 +00:00
|
|
|
returned_letters,
|
2019-03-25 10:25:05 +00:00
|
|
|
send,
|
|
|
|
|
service_settings,
|
|
|
|
|
sign_in,
|
|
|
|
|
sign_out,
|
|
|
|
|
templates,
|
|
|
|
|
two_factor,
|
2020-09-29 14:48:56 +01:00
|
|
|
tour,
|
2019-08-09 08:44:11 +01:00
|
|
|
uploads,
|
2019-03-25 10:25:05 +00:00
|
|
|
user_profile,
|
|
|
|
|
verify,
|
2015-12-18 10:26:56 +00:00
|
|
|
)
|