This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2019-10-28 13:44:46 +00:00
|
|
|
"""Audit API Views"""
|
2019-10-28 13:27:43 +00:00
|
|
|
from rest_framework.serializers import ModelSerializer
|
|
|
|
from rest_framework.viewsets import ReadOnlyModelViewSet
|
|
|
|
|
|
|
|
from passbook.audit.models import Event
|
|
|
|
|
|
|
|
|
|
|
|
class EventSerializer(ModelSerializer):
|
2019-10-28 13:44:46 +00:00
|
|
|
"""Event Serializer"""
|
2019-10-28 13:27:43 +00:00
|
|
|
|
|
|
|
class Meta:
|
|
|
|
|
|
|
|
model = Event
|
|
|
|
fields = ['pk', 'user', 'action', 'date', 'app', 'context', 'request_ip', 'created', ]
|
|
|
|
|
|
|
|
|
|
|
|
class EventViewSet(ReadOnlyModelViewSet):
|
2019-10-28 13:44:46 +00:00
|
|
|
"""Event Read-Only Viewset"""
|
2019-10-28 13:27:43 +00:00
|
|
|
|
|
|
|
queryset = Event.objects.all()
|
|
|
|
serializer_class = EventSerializer
|