mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-18 17:34:34 -05:00
The idea was that this would be a place to document all the design
patterns used in Notify. However it hasn’t been kept up to date, and,
looking at the `git blame`[1] no new patterns have been added for 5
years.
I think it’s better to get rid of it than have to keep maintaining
something which is inaccurate.
1. 64aa0d359c/app/templates/views/styleguide.html
45 lines
763 B
Python
45 lines
763 B
Python
from flask import Blueprint
|
|
|
|
main = Blueprint('main', __name__)
|
|
no_cookie = Blueprint('no_cookie', __name__)
|
|
|
|
from app.main.views import ( # noqa isort:skip
|
|
add_service,
|
|
agreement,
|
|
api_keys,
|
|
broadcast,
|
|
choose_account,
|
|
code_not_received,
|
|
conversation,
|
|
dashboard,
|
|
email_branding,
|
|
feedback,
|
|
find_services,
|
|
find_users,
|
|
forgot_password,
|
|
history,
|
|
inbound_number,
|
|
index,
|
|
invites,
|
|
jobs,
|
|
letter_branding,
|
|
manage_users,
|
|
new_password,
|
|
notifications,
|
|
organisations,
|
|
platform_admin,
|
|
providers,
|
|
register,
|
|
returned_letters,
|
|
send,
|
|
service_settings,
|
|
sign_in,
|
|
sign_out,
|
|
templates,
|
|
two_factor,
|
|
tour,
|
|
uploads,
|
|
user_profile,
|
|
verify,
|
|
)
|