Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions app/views/cards/_card.json.jbuilder
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ json.cache! card do
json.board card.board, partial: "boards/board", as: :board
json.column card.column, partial: "columns/column", as: :column if card.column
json.creator card.creator, partial: "users/user", as: :user
json.assignees card.assignees, partial: "users/user", as: :user
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey @petzbloom-sudo Nice work! I believe we could also update https://github.com/basecamp/fizzy/blob/main/docs/API.md?plain=1#L464, where there’s an example of the payload. What do you think?


json.comments_url card_comments_url(card)
end