13 lines
364 B
Python
Executable File
13 lines
364 B
Python
Executable File
from .models import Connection
|
|
from rest_framework import serializers
|
|
|
|
|
|
class ConnectionSerializer(serializers.HyperlinkedModelSerializer):
|
|
class Meta:
|
|
model = Connection
|
|
fields = ['url', 'name', 'type', 'credentials']
|
|
extra_kwargs = {
|
|
'type': {'write_only': True},
|
|
'credentials': {'write_only': True}
|
|
}
|