mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-22 08:40:03 +01:00
6f6b126f22
* split up files and organize code * set up definition drawer and logic and add tagging * add change owner selection * definition description editing working * definition drawer graph and events table * remove graph logic for now * small fixes * property definition doesn't have an owner * minor tweaks * lots of small fixes * show tags on table, disable editing for posthog events, fix tags autocomplete * fix font sizes and alignment * allow event limiting and hide behind feature flag again * linter things * test fix * lint * clean up events limit * limitOffsetPagination in events * ignore type Co-authored-by: Paolo D'Amico <paolodamico@users.noreply.github.com>
33 lines
1.1 KiB
Python
33 lines
1.1 KiB
Python
from rest_framework import serializers
|
|
|
|
from ee.models.event_definition import EnterpriseEventDefinition
|
|
from posthog.api.shared import UserBasicSerializer
|
|
|
|
|
|
class EnterpriseEventDefinitionSerializer(serializers.ModelSerializer):
|
|
updated_by = UserBasicSerializer(read_only=True)
|
|
|
|
class Meta:
|
|
model = EnterpriseEventDefinition
|
|
fields = (
|
|
"id",
|
|
"name",
|
|
"owner",
|
|
"description",
|
|
"tags",
|
|
"volume_30_day",
|
|
"query_usage_30_day",
|
|
"updated_at",
|
|
"updated_by",
|
|
)
|
|
read_only_fields = ["id", "name", "updated_at", "volume_30_day", "query_usage_30_day"]
|
|
|
|
def update(self, event_definition: EnterpriseEventDefinition, validated_data):
|
|
validated_data["updated_by"] = self.context["request"].user
|
|
return super().update(event_definition, validated_data)
|
|
|
|
def to_representation(self, instance):
|
|
representation = super().to_representation(instance)
|
|
representation["owner"] = UserBasicSerializer(instance=instance.owner).data
|
|
return representation
|