membersystem/src/utils/types.py

11 lines
237 B
Python
Raw Normal View History

"""Collection of types for the project."""
from django.contrib.auth.models import User
from django.http import HttpRequest
class AuthenticatedHttpRequest(HttpRequest):
"""HttpRequest with an authenticated user."""
user: User