diff options
author | Kristofer Hallin <kristofer@sunet.se> | 2022-01-17 14:01:08 +0100 |
---|---|---|
committer | Kristofer Hallin <kristofer@sunet.se> | 2022-01-17 14:01:08 +0100 |
commit | bb5029d512a58021718061aca439383c8b11e575 (patch) | |
tree | 74354b6bf55a9159695eea695653ef03009e5ad4 /src/main.py | |
parent | 571997129ba5275cc5e148a8ac1c0f64d895a9ef (diff) | |
parent | 0b55f7ff7cdd3b78bd9992063208476c1c080a02 (diff) |
* Merge branch 'main' into feature.callhome
* New API endpoints
* Updated requirements
Diffstat (limited to 'src/main.py')
-rwxr-xr-x | src/main.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main.py b/src/main.py index aa3b133..a65971d 100755 --- a/src/main.py +++ b/src/main.py @@ -24,6 +24,7 @@ app.add_middleware( expose_headers=["X-Total-Count"], ) + @app.middleware("http") async def mock_x_total_count_header(request: Request, call_next): response = await call_next(request) |