Skip to content

Instantly share code, notes, and snippets.

@jacobh
Created July 29, 2014 03:35
Show Gist options
  • Save jacobh/062df8e9403c3fd8d237 to your computer and use it in GitHub Desktop.
Save jacobh/062df8e9403c3fd8d237 to your computer and use it in GitHub Desktop.
class PaymentSummaryViewSet(viewsets.ModelViewSet):
queryset = PaymentSummary.objects.all()
serializer_class = PaymentSummarySerializer
@action()
def send(self, request, pk=None):
# code to send individual payment summary
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment