funkwhale/api/funkwhale_api/common/routers.py

8 wiersze
177 B
Python

from rest_framework.routers import SimpleRouter
class OptionalSlashRouter(SimpleRouter):
def __init__(self):
super().__init__()
self.trailing_slash = "/?"