mirror of
https://git.v0id.ovh/n3wt-innov/n3wt-school.git
synced 2026-01-29 16:03:21 +00:00
7 lines
203 B
Python
7 lines
203 B
Python
from rest_framework import serializers
|
|
from .models import SMTPSettings
|
|
|
|
class SMTPSettingsSerializer(serializers.ModelSerializer):
|
|
class Meta:
|
|
model = SMTPSettings
|
|
fields = '__all__' |