Skip to content

Instantly share code, notes, and snippets.

@last-ent
Created May 17, 2015 09:18
Show Gist options
  • Save last-ent/f35c18299c6490116c86 to your computer and use it in GitHub Desktop.
Save last-ent/f35c18299c6490116c86 to your computer and use it in GitHub Desktop.
# View
class KhinModelView(viewsets.ModelViewSet):
model = KhinModel
queryset = KhinModel.objects.all()
# Endpoint
router = router.Router() # I think
router.register('/path/to/endpoint', KhinModelView)
url = urlpatterns(
'',
include('^prefix/', router.urls),
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment