Skip to content
Snippets Groups Projects
Verified Commit 1288e489 authored by Alex Timmermann's avatar Alex Timmermann
Browse files

feat(auth): add email to authenticated user query

This is needed for tracking with the Facebook SDK.

Refs: HOLI-11044
parent e2bd868e
No related branches found
No related tags found
No related merge requests found
# Generated by Django 5.0.13 on 2025-03-11 11:55
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
("openbook_auth", "0035_user_tracking_consent_ad_partners"),
("openbook_auth", "0035_userprofile_interests_v2_userprofile_skills_v2"),
]
operations = []
......@@ -142,6 +142,7 @@ class User:
@strawberry_django.type(UserModel)
class AuthenticatedUser(User):
email: str
tracking_consent_analytics: Optional[bool]
tracking_consent_personalization: Optional[bool]
tracking_consent_ad_partners: Optional[bool]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment