mirror of
https://github.com/lucaspalomodevelop/netbox.git
synced 2026-03-17 02:44:35 +00:00
11 lines
217 B
Python
11 lines
217 B
Python
from django.contrib.auth.models import User
|
|
|
|
from rest_framework import serializers
|
|
|
|
|
|
class NestedUserSerializer(serializers.ModelSerializer):
|
|
|
|
class Meta:
|
|
model = User
|
|
fields = ['id', 'username']
|