Created
July 29, 2014 03:35
-
-
Save jacobh/062df8e9403c3fd8d237 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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