kopia lustrzana https://dev.funkwhale.audio/funkwhale/funkwhale
17 wiersze
557 B
Python
17 wiersze
557 B
Python
from django.conf.urls import url
|
|
from django.views.decorators.csrf import csrf_exempt
|
|
|
|
from funkwhale_api.common import routers
|
|
|
|
from . import views
|
|
|
|
router = routers.OptionalSlashRouter()
|
|
router.register(r"apps", views.ApplicationViewSet, "apps")
|
|
router.register(r"grants", views.GrantViewSet, "grants")
|
|
|
|
urlpatterns = router.urls + [
|
|
url("^authorize/$", csrf_exempt(views.AuthorizeView.as_view()), name="authorize"),
|
|
url("^token/$", views.TokenView.as_view(), name="token"),
|
|
url("^revoke/$", views.RevokeTokenView.as_view(), name="revoke"),
|
|
]
|