2 files changed
+2
-2
lines changed- .bumpversion.cfg+1-1
- .pre-commit-config.yaml+16-7
- README.rst+2-2
- poetry.lock+1.3k-1.4k
- pyproject.toml+7-6
- src/rasenmaeher_api/__init__.py+3-2
- src/rasenmaeher_api/cfssl/anoncsr.py+2-1
- src/rasenmaeher_api/cfssl/base.py+1
- src/rasenmaeher_api/cfssl/mtls.py+1
- src/rasenmaeher_api/cfssl/private.py+6-5
- src/rasenmaeher_api/cfssl/public.py+5-4
- src/rasenmaeher_api/console.py+1
- src/rasenmaeher_api/db/__init__.py+1
- src/rasenmaeher_api/db/base.py+1
- src/rasenmaeher_api/db/config.py+1
- src/rasenmaeher_api/db/dbinit.py+1
- src/rasenmaeher_api/db/engine.py+1
- src/rasenmaeher_api/db/enrollments.py+14-4
- src/rasenmaeher_api/db/errors.py+1
- src/rasenmaeher_api/db/logincodes.py+1
- src/rasenmaeher_api/db/middleware.py+1
- src/rasenmaeher_api/db/nonces.py+1
- src/rasenmaeher_api/db/people.py+16-4
- src/rasenmaeher_api/jwtinit.py+1
- src/rasenmaeher_api/kchelpers.py+7-1
- src/rasenmaeher_api/mtlsinit.py+1
- src/rasenmaeher_api/productapihelpers.py+1
- src/rasenmaeher_api/rmsettings.py+13-1
- src/rasenmaeher_api/testhelpers.py+1
- src/rasenmaeher_api/user_integrations.py+1
- src/rasenmaeher_api/web/api/checkauth/__init__.py+1
- src/rasenmaeher_api/web/api/checkauth/views.py+1
- src/rasenmaeher_api/web/api/descriptions.py+1
- src/rasenmaeher_api/web/api/enduserpfx/__init__.py+1
- src/rasenmaeher_api/web/api/enduserpfx/views.py+40-2
- src/rasenmaeher_api/web/api/enrollment/__init__.py+1
- src/rasenmaeher_api/web/api/enrollment/schema.py+4-1
- src/rasenmaeher_api/web/api/enrollment/views.py+5-2
- src/rasenmaeher_api/web/api/firstuser/__init__.py+1
- src/rasenmaeher_api/web/api/firstuser/schema.py+5-1
- src/rasenmaeher_api/web/api/firstuser/views.py+4-1
- src/rasenmaeher_api/web/api/healthcheck/__init__.py+1
- src/rasenmaeher_api/web/api/healthcheck/schema.py+1
- src/rasenmaeher_api/web/api/healthcheck/views.py+1
- src/rasenmaeher_api/web/api/instructions/__init__.py+1
- src/rasenmaeher_api/web/api/instructions/schema.py+1
- src/rasenmaeher_api/web/api/instructions/views.py+4-1
- src/rasenmaeher_api/web/api/middleware/datatypes.py+1
- src/rasenmaeher_api/web/api/middleware/mtls.py+2-1
- src/rasenmaeher_api/web/api/middleware/user.py+1
- src/rasenmaeher_api/web/api/people/__init__.py+1
- src/rasenmaeher_api/web/api/people/schema.py+1
- src/rasenmaeher_api/web/api/people/views.py+1
- src/rasenmaeher_api/web/api/product/__init__.py+1
- src/rasenmaeher_api/web/api/product/schema.py+29
- src/rasenmaeher_api/web/api/product/views.py+17-1
- src/rasenmaeher_api/web/api/router.py+2-1
- src/rasenmaeher_api/web/api/tokens/__init__.py+1
- src/rasenmaeher_api/web/api/tokens/schema.py+1
- src/rasenmaeher_api/web/api/tokens/views.py+1
- src/rasenmaeher_api/web/api/utils/__init__.py+1
- src/rasenmaeher_api/web/api/utils/csr_utils.py+25
- src/rasenmaeher_api/web/api/utils/schema.py+1
- src/rasenmaeher_api/web/api/utils/views.py+1
- src/rasenmaeher_api/web/application.py+1
- tests/conftest.py+9-2
- tests/ptfpapi/fpclient.py+1
- tests/ptfpapi/fpinit.py+1
- tests/ptfpapi/fprun.py+4
- tests/ptfpapi/requirements.txt+5-5
- tests/test_auth.py+1
- tests/test_cfssl.py+1
- tests/test_console.py+1
- tests/test_db.py+1
- tests/test_descriptions.py+1
- tests/test_enrollment.py+85
- tests/test_healthcheck.py+1
- tests/test_rasenmaeher_api.py+2-1
- tests/test_tokens.py+1
Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
370 | 370 |
| |
371 | 371 |
| |
372 | 372 |
| |
373 |
| - | |
| 373 | + | |
374 | 374 |
| |
375 | 375 |
| |
376 | 376 |
| |
|
0 commit comments