Files
thrillwiki_django_no_react/apps/api/v1/schema.py
pacnpal 75cc618c2b update
2025-09-21 20:04:42 -04:00

13 lines
300 B
Python

"""
Custom schema hooks for drf-spectacular
"""
def custom_preprocessing_hook(endpoints):
"""
Custom preprocessing hook for drf-spectacular.
Currently disabled - returns all endpoints for full schema generation.
"""
# Return all endpoints without filtering
return endpoints