12 lines
317 B
Python
12 lines
317 B
Python
from django.shortcuts import render
|
|
|
|
# Create your views here.
|
|
from rest_framework import viewsets
|
|
from companies.models import Company
|
|
from companies.serializers import CompanySerializer
|
|
|
|
|
|
class CompanyViewSet(viewsets.ModelViewSet):
|
|
queryset = Company.objects.all()
|
|
serializer_class = CompanySerializer
|