mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-23 20:01:01 -05:00
This changeset removes webauthn from the Notify.gov admin app. We are not using webauthn at all in our implementation and will be looking at an entirely different authentication system in the near future. Signed-off-by: Carlo Costino <carlo.costino@gsa.gov>
43 lines
696 B
Python
43 lines
696 B
Python
from flask import Blueprint
|
|
|
|
main = Blueprint('main', __name__)
|
|
|
|
from app.main.views import ( # noqa isort:skip
|
|
add_service,
|
|
api_keys,
|
|
choose_account,
|
|
code_not_received,
|
|
conversation,
|
|
dashboard,
|
|
email_branding,
|
|
feedback,
|
|
find_services,
|
|
find_users,
|
|
forgot_password,
|
|
history,
|
|
inbound_number,
|
|
index,
|
|
invites,
|
|
jobs,
|
|
manage_users,
|
|
new_password,
|
|
notifications,
|
|
organizations,
|
|
performance,
|
|
platform_admin,
|
|
pricing,
|
|
providers,
|
|
register,
|
|
security_policy,
|
|
send,
|
|
service_settings,
|
|
sign_in,
|
|
sign_out,
|
|
templates,
|
|
tour,
|
|
two_factor,
|
|
uploads,
|
|
user_profile,
|
|
verify,
|
|
)
|