File tree
8 files changed
+25
-22
lines changed- tests
8 files changed
+25
-22
lines changedLines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 | 1 |
| |
2 |
| - | |
| 2 | + | |
3 | 3 |
| |
4 | 4 |
| |
5 | 5 |
| |
|
- .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+7-4
- 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: 15 additions & 15 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
75 | 75 |
| |
76 | 76 |
| |
77 | 77 |
| |
78 |
| - | |
| 78 | + | |
79 | 79 |
| |
80 | 80 |
| |
81 | 81 |
| |
82 | 82 |
| |
83 | 83 |
| |
84 | 84 |
| |
85 | 85 |
| |
86 |
| - | |
| 86 | + | |
87 | 87 |
| |
88 | 88 |
| |
89 | 89 |
| |
| |||
122 | 122 |
| |
123 | 123 |
| |
124 | 124 |
| |
125 |
| - | |
| 125 | + | |
126 | 126 |
| |
127 | 127 |
| |
128 | 128 |
| |
| |||
151 | 151 |
| |
152 | 152 |
| |
153 | 153 |
| |
154 |
| - | |
| 154 | + | |
155 | 155 |
| |
156 | 156 |
| |
157 | 157 |
| |
| |||
174 | 174 |
| |
175 | 175 |
| |
176 | 176 |
| |
177 |
| - | |
| 177 | + | |
178 | 178 |
| |
179 | 179 |
| |
180 | 180 |
| |
| |||
200 | 200 |
| |
201 | 201 |
| |
202 | 202 |
| |
203 |
| - | |
| 203 | + | |
204 | 204 |
| |
205 | 205 |
| |
206 | 206 |
| |
| |||
260 | 260 |
| |
261 | 261 |
| |
262 | 262 |
| |
263 |
| - | |
| 263 | + | |
264 | 264 |
| |
265 | 265 |
| |
266 | 266 |
| |
| |||
370 | 370 |
| |
371 | 371 |
| |
372 | 372 |
| |
373 |
| - | |
| 373 | + | |
374 | 374 |
| |
375 | 375 |
| |
376 | 376 |
| |
| |||
392 | 392 |
| |
393 | 393 |
| |
394 | 394 |
| |
395 |
| - | |
| 395 | + | |
396 | 396 |
| |
397 | 397 |
| |
398 | 398 |
| |
| |||
426 | 426 |
| |
427 | 427 |
| |
428 | 428 |
| |
429 |
| - | |
| 429 | + | |
430 | 430 |
| |
431 | 431 |
| |
432 | 432 |
| |
433 | 433 |
| |
434 | 434 |
| |
435 | 435 |
| |
436 |
| - | |
| 436 | + | |
437 | 437 |
| |
438 | 438 |
| |
439 | 439 |
| |
440 | 440 |
| |
441 |
| - | |
| 441 | + | |
442 | 442 |
| |
443 | 443 |
| |
444 | 444 |
| |
| |||
498 | 498 |
| |
499 | 499 |
| |
500 | 500 |
| |
501 |
| - | |
| 501 | + | |
502 | 502 |
| |
503 | 503 |
| |
504 | 504 |
| |
| |||
515 | 515 |
| |
516 | 516 |
| |
517 | 517 |
| |
518 |
| - | |
| 518 | + | |
519 | 519 |
| |
520 | 520 |
| |
521 | 521 |
| |
| |||
701 | 701 |
| |
702 | 702 |
| |
703 | 703 |
| |
704 |
| - | |
| 704 | + | |
705 | 705 |
| |
706 | 706 |
| |
707 | 707 |
| |
|
Lines changed: 4 additions & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
114 | 114 |
| |
115 | 115 |
| |
116 | 116 |
| |
117 |
| - | |
| 117 | + | |
| 118 | + | |
| 119 | + | |
| 120 | + | |
118 | 121 |
| |
119 | 122 |
| |
120 | 123 |
| |
|
- src/assets/mtls/en/mtls-windows-1.png
- src/assets/mtls/en/mtls-windows-2.png
- src/assets/mtls/en/mtls-windows-3.png
- src/assets/mtls/en/mtls-windows-4.png
- src/assets/mtls/en/mtls-windows-5.png
- src/assets/mtls/en/mtls-windows-6.png
- src/assets/mtls/en/mtls-windows-7.png
- src/assets/mtls/en/mtls-windows-8.png
- src/assets/mtls/fi/mtls-android-1.jpg
- src/assets/mtls/fi/mtls-android-2.jpg
- src/assets/mtls/fi/mtls-android-3.jpg
- src/assets/mtls/fi/mtls-android-4.jpg
- src/assets/mtls/fi/mtls-ios-1.png
- src/assets/mtls/fi/mtls-ios-2.png
- src/assets/mtls/fi/mtls-ios-3.png
- src/assets/mtls/fi/mtls-ios-4.png
- src/assets/mtls/fi/mtls-ios-5.png
- src/assets/mtls/fi/mtls-ios-6.png
- src/assets/mtls/fi/mtls-ios-7.png
- src/assets/mtls/fi/mtls-ios-8.png
- src/assets/mtls/fi/mtls-ios-9.png
- src/assets/mtls/fi/mtls-mac-1.png
- src/assets/mtls/fi/mtls-mac-2.png
- src/assets/mtls/fi/mtls-mac-3.png
- src/assets/mtls/fi/mtls-mac-4.png
- src/assets/mtls/fi/mtls-mac-5.png
- src/assets/mtls/fi/mtls-mac-6.png
- src/assets/mtls/fi/mtls-windows-fi-1.png
- src/assets/mtls/fi/mtls-windows-fi-2.png
- src/assets/mtls/fi/mtls-windows-fi-3.png
- src/assets/mtls/fi/mtls-windows-fi-4.png
- src/assets/mtls/fi/mtls-windows-fi-5.png
- src/assets/mtls/fi/mtls-windows-fi-6.png
- src/assets/mtls/fi/mtls-windows-fi-7.png
- src/assets/mtls/fi/mtls-windows-fi-8.png
- src/views/mtls/AndroidMtlsInstructions.tsx+4-4
- src/views/mtls/IosMtlsInstructions.tsx+9-9
- src/views/mtls/MacMtlsInstructions.tsx+6-6
- src/views/mtls/WindowsMtlsInstructions.tsx+29-9
- vite.config.ts+3-1
Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 |
| - | |
| 1 | + |
0 commit comments