takahe/api/views/filters.py

10 lines
152 B
Python
Raw Normal View History

from hatchway import api_view
2022-12-11 11:37:28 -08:00
from api.decorators import identity_required
2022-12-11 11:37:28 -08:00
@identity_required
@api_view.get
def list_filters(request):
2022-12-11 11:37:28 -08:00
return []