mirror of
https://github.com/chanzuckerberg/cellxgene.git
synced 2026-09-16 13:27:59 +08:00
* add oauth authentication Add support for OAuth2. Change the interface to AuthTypeBase - better handling of config parameters - add a complete_setup function for additional setup steps Added a function wrapper to enforce authentication for the routes that require authenticaiton. * change fsspec requirement fsspec 0.8.0 breaks our tests it imports a module that is does not require.
8 lines
237 B
Python
8 lines
237 B
Python
|
|
# import the built in auth types so they can be registered
|
|
|
|
import server.auth.auth_none # noqa: F401
|
|
import server.auth.auth_test # noqa: F401
|
|
import server.auth.auth_session # noqa: F401
|
|
import server.auth.auth_oauth # noqa: F401
|