from django.urls import path from plane.api.views import ( FileAssetEndpoint, UserAssetsEndpoint, ) urlpatterns = [ path( "workspaces//file-assets/", FileAssetEndpoint.as_view(), name="file-assets", ), path( "workspaces/file-assets///", FileAssetEndpoint.as_view(), name="file-assets", ), path( "users/file-assets/", UserAssetsEndpoint.as_view(), name="user-file-assets", ), path( "users/file-assets//", UserAssetsEndpoint.as_view(), name="user-file-assets", ), ]