2023-02-07 11:07:15 -08:00
|
|
|
from hatchway import api_view
|
2022-12-11 11:37:28 -08:00
|
|
|
|
2023-02-13 20:17:26 -08:00
|
|
|
from api.decorators import identity_required
|
|
|
|
|
2022-12-11 11:37:28 -08:00
|
|
|
|
|
|
|
@identity_required
|
2023-02-07 11:07:15 -08:00
|
|
|
@api_view.get
|
|
|
|
def list_filters(request):
|
2022-12-11 11:37:28 -08:00
|
|
|
return []
|