From a844353f1e0c7af0f415763f75e5531a19af32c2 Mon Sep 17 00:00:00 2001 From: Fernando Olivares Date: Thu, 22 Jan 2026 03:31:23 -0600 Subject: [PATCH] Remove unused has_attachments and assignees from notification JSON These fields were added but are not used by the iOS client. Co-Authored-By: Claude Opus 4.5 --- app/views/notifications/_notification.json.jbuilder | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/views/notifications/_notification.json.jbuilder b/app/views/notifications/_notification.json.jbuilder index 7d269d46d..5673097a7 100644 --- a/app/views/notifications/_notification.json.jbuilder +++ b/app/views/notifications/_notification.json.jbuilder @@ -11,8 +11,6 @@ json.cache! notification do json.card do json.(notification.card, :id, :number, :title, :status) json.board_name notification.card.board.name - json.has_attachments notification.card.has_attachments? - json.assignees notification.card.assignees, partial: "users/user", as: :user json.url card_url(notification.card) json.column notification.card.column, partial: "columns/column", as: :column if notification.card.column end