Merge pull request #2244 from basecamp/expose-card-ids-on-comments

Expose the card ID and URL on comments
This commit is contained in:
Stanko Krtalić
2025-12-24 08:50:47 +01:00
committed by GitHub
3 changed files with 16 additions and 1 deletions
@@ -63,10 +63,12 @@ class Cards::CommentsControllerTest < ActionDispatch::IntegrationTest
test "show as JSON" do
comment = comments(:logo_agreement_kevin)
get card_comment_path(cards(:logo), comment), as: :json
get card_comment_path(comment.card, comment), as: :json
assert_response :success
assert_equal comment.id, @response.parsed_body["id"]
assert_equal comment.card.id, @response.parsed_body.dig("card", "id")
assert_equal card_url(comment.card.id), @response.parsed_body.dig("card", "url")
end
test "update as JSON" do