mirror of
https://github.com/ansible/awx.git
synced 2024-11-02 18:21:12 +03:00
11 lines
313 B
Python
11 lines
313 B
Python
|
from django.contrib.auth.models import User as DjangoUser
|
||
|
from lib.main.models import User, Organization, Project
|
||
|
from rest_framework import serializers, pagination
|
||
|
|
||
|
class OrganizationSerializer(serializers.ModelSerializer):
|
||
|
|
||
|
class Meta:
|
||
|
model = Organization
|
||
|
fields = ('name', 'description')
|
||
|
|