mirror of
https://github.com/ansible/awx.git
synced 2026-01-09 23:12:08 -03:30
11 lines
241 B
Python
11 lines
241 B
Python
# myapp/api.py
|
|
from tastypie.resources import ModelResource
|
|
import lib.main.models as models
|
|
|
|
class Organizations(ModelResource):
|
|
|
|
class Meta:
|
|
queryset = models.Organization.objects.all()
|
|
resource_name = 'organizations'
|
|
|