-
- Downloads
Implement OIDC-based authentication and authorization module with OPA integration
parent
ac9b297a
No related branches found
No related tags found
This commit is part of merge request !138. Comments created here will be created in the context of that merge request.
Showing
- gso/__init__.py 1 addition, 0 deletionsgso/__init__.py
- gso/api/v1/imports.py 1 addition, 1 deletiongso/api/v1/imports.py
- gso/api/v1/subscriptions.py 1 addition, 1 deletiongso/api/v1/subscriptions.py
- gso/auth/__init__.py 1 addition, 0 deletionsgso/auth/__init__.py
- gso/auth/oidc_policy_helper.py 490 additions, 0 deletionsgso/auth/oidc_policy_helper.py
- gso/auth/py.typed 0 additions, 0 deletionsgso/auth/py.typed
- gso/auth/security.py 42 additions, 0 deletionsgso/auth/security.py
- gso/auth/settings.py 42 additions, 0 deletionsgso/auth/settings.py
- gso/monkeypatches.py 17 additions, 0 deletionsgso/monkeypatches.py
- pyproject.toml 2 additions, 1 deletionpyproject.toml
- requirements.txt 1 addition, 0 deletionsrequirements.txt
- test/auth/__init__.py 0 additions, 0 deletionstest/auth/__init__.py
- test/auth/test_oidc_policy_helper.py 288 additions, 0 deletionstest/auth/test_oidc_policy_helper.py
- test/conftest.py 1 addition, 1 deletiontest/conftest.py
- tox.ini 2 additions, 2 deletionstox.ini
gso/auth/__init__.py
0 → 100644
gso/auth/oidc_policy_helper.py
0 → 100644
gso/auth/py.typed
0 → 100644
gso/auth/security.py
0 → 100644
gso/auth/settings.py
0 → 100644
gso/monkeypatches.py
0 → 100644
... | ... | @@ -18,3 +18,4 @@ ruff==0.1.5 |
sphinx==7.2.6 | ||
sphinx-rtd-theme==1.3.0 | ||
urllib3_mock==0.3.3 | ||
pytest-asyncio==0.23.3 |
test/auth/__init__.py
0 → 100644
test/auth/test_oidc_policy_helper.py
0 → 100644
Please register or sign in to comment