From 89e88234048103e2a448e5f0341e3b625d54e6de Mon Sep 17 00:00:00 2001 From: Clark Winkelmann Date: Wed, 1 May 2019 23:05:25 +0200 Subject: [PATCH] Remove notification id from serializer attributes --- framework/core/src/Api/Serializer/NotificationSerializer.php | 1 - 1 file changed, 1 deletion(-) diff --git a/framework/core/src/Api/Serializer/NotificationSerializer.php b/framework/core/src/Api/Serializer/NotificationSerializer.php index deaeeddbe..002607147 100644 --- a/framework/core/src/Api/Serializer/NotificationSerializer.php +++ b/framework/core/src/Api/Serializer/NotificationSerializer.php @@ -44,7 +44,6 @@ class NotificationSerializer extends AbstractSerializer } return [ - 'id' => (int) $notification->id, 'contentType' => $notification->type, 'content' => $notification->data, 'createdAt' => $this->formatDate($notification->created_at),