mirror of
https://github.com/ansible/awx.git
synced 2026-01-11 18:09:57 -03:30
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')
|
|
|