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.
authentik/passbook/audit/api.py

31 lines
636 B
Python
Raw Normal View History

2019-10-28 13:44:46 +00:00
"""Audit API Views"""
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"""
class Meta:
model = Event
2019-12-31 11:51:16 +00:00
fields = [
"pk",
"user",
"action",
"date",
"app",
"context",
2020-02-28 10:48:55 +00:00
"client_ip",
2019-12-31 11:51:16 +00:00
"created",
]
class EventViewSet(ReadOnlyModelViewSet):
2019-10-28 13:44:46 +00:00
"""Event Read-Only Viewset"""
queryset = Event.objects.all()
serializer_class = EventSerializer