Files
notifications-admin/app/main/__init__.py
Rebecca Law f788aab998 Remove letter jobs page
When we first built letters you could only send them via a CSV upload, initially we needed a way to send those files to dvla per job.
We since stopped using this page. So let's delete it!
2018-11-15 17:17:45 +00:00

38 lines
618 B
Python

from flask import Blueprint
main = Blueprint('main', __name__) # noqa
from app.main.views import ( # noqa
index,
sign_in,
sign_out,
register,
two_factor,
verify,
send,
add_service,
code_not_received,
jobs,
dashboard,
templates,
service_settings,
forgot_password,
new_password,
styleguide,
user_profile,
choose_account,
api_keys,
manage_users,
invites,
feedback,
providers,
find_users,
platform_admin,
email_branding,
conversation,
organisations,
notifications,
inbound_number,
agreement,
)