22 lines
622 B
Python
22 lines
622 B
Python
|
from rest_framework import viewsets
|
||
|
|
||
|
from orchestra.api import router
|
||
|
from orchestra.apps.accounts.api import AccountApiMixin
|
||
|
|
||
|
from .models import PaymentSource, Transaction
|
||
|
from .serializers import PaymentSourceSerializer, TransactionSerializer
|
||
|
|
||
|
|
||
|
class PaymentSourceViewSet(AccountApiMixin, viewsets.ModelViewSet):
|
||
|
model = PaymentSource
|
||
|
serializer_class = PaymentSourceSerializer
|
||
|
|
||
|
|
||
|
class TransactionViewSet(viewsets.ModelViewSet):
|
||
|
model = Transaction
|
||
|
serializer_class = TransactionSerializer
|
||
|
|
||
|
|
||
|
router.register(r'payment-sources', PaymentSourceViewSet)
|
||
|
router.register(r'transactions', TransactionViewSet)
|