Fixes #1622 - split the api into 4 apps: core, history, schedule, storage - exploded the settings into testing/prod
9 lines
227 B
Python
9 lines
227 B
Python
from rest_framework import serializers
|
|
|
|
from ..models import ServiceRegister
|
|
|
|
|
|
class ServiceRegisterSerializer(serializers.HyperlinkedModelSerializer):
|
|
class Meta:
|
|
model = ServiceRegister
|
|
fields = "__all__"
|