# -*- coding: utf-8 -*-
# Akvo RSR is covered by the GNU Affero General Public License.
# See more details in the license.txt file located at the root folder of the Akvo RSR module.
# For additional details on the GNU license please see < http://www.gnu.org/licenses/agpl.html >.
from django_q.tasks import async_task
from akvo.rest.serializers import IatiExportSerializer
from akvo.rest.viewsets import BaseRSRViewSet
from akvo.rsr.models import IatiExport
[docs]def create_iati_file(obj_id):
try:
obj = IatiExport.objects.get(id=obj_id)
obj.create_iati_file()
except IatiExport.DoesNotExist:
pass
[docs]class IatiExportViewSet(BaseRSRViewSet):
"""
"""
queryset = IatiExport.objects.all().select_related('user')\
.prefetch_related('projects')
serializer_class = IatiExportSerializer