chore: cleanup auth code after debugging session
Build and Push / build (release) Successful in 50s

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Jeroen Schweitzer
2026-01-01 21:41:10 +01:00
co-authored by Claude Opus 4.5
parent ffa984e271
commit 3516376d92
3 changed files with 8 additions and 2 deletions
+1 -1
View File
@@ -3,6 +3,7 @@ Authentication Service
Business logic for user synchronization from Authentik.
"""
import re
import uuid
from datetime import datetime, timezone
from typing import Optional
@@ -251,7 +252,6 @@ class AuthService:
def _extract_cookie(self, headers: httpx.Headers, cookie_name: str) -> str:
"""Extract a specific cookie value from Set-Cookie headers"""
import re
for header in headers.get_list('set-cookie'):
if header.startswith(f'{cookie_name}='):
match = re.match(rf'{cookie_name}=([^;]+)', header)