Files
notifications-admin/app/main/__init__.py
Katie Smith 529d7df5f5 Add page to create new letter branding
This has a form with 3 fields - the file upload field, logo name, and an
optional logo domain. Logos need to be uploaded in `.svg` format and we
then convert this to `.png` format and upload both file types to S3 as
well as saving the letter branding details in the database.
2019-02-06 17:26:58 +00:00

39 lines
639 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,
letter_branding,
conversation,
organisations,
notifications,
inbound_number,
agreement,
)