This repository has been archived by the owner on Dec 18, 2024. It is now read-only.
generated from communitiesuk/funding-service-design-TEMPLATE
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
https://mhclgdigital.atlassian.net/browse/FSPT-189 In the process of merging authenticator with pre-award-frontend, we found that the versions of Flask and Connexion in use between everything are incompatible. We remove connexion here because it takes us in the general direction of travel (everything is just a Flask app), and allows us to integrate the authenticator code (after this change) with pre-award-frontend (which doesn't use connexion currently). This feels better than adding connexion to pre-award-frontend, to then remove it again later.
- Loading branch information
1 parent
3adb765
commit 4260c95
Showing
20 changed files
with
234 additions
and
507 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
from api.magic_links.routes import MagicLinksView # noqa | ||
from api.session.auth_session import AuthSessionView # noqa | ||
from api.sso.routes import SsoView # noqa | ||
from api.session.auth_session import AuthSessionUserView, AuthSessionSignOutView # noqa | ||
from api.sso.routes import SsoLoginView, SsoLogoutView, SsoGraphCallView, SsoGetTokenView # noqa |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.