Add card reactions to API docs and reactions_url to card JSON (#2427)

Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Mike Dalessio
2026-01-23 16:55:50 -05:00
committed by GitHub
parent c822639260
commit 16745e89d1
4 changed files with 68 additions and 2 deletions
@@ -161,6 +161,8 @@ class CardsControllerTest < ActionDispatch::IntegrationTest
assert_equal card.title, @response.parsed_body["title"]
assert_equal card.closed?, @response.parsed_body["closed"]
assert_equal 2, @response.parsed_body["steps"].size
assert_equal card_comments_url(card), @response.parsed_body["comments_url"]
assert_equal card_reactions_url(card), @response.parsed_body["reactions_url"]
end
test "create as JSON" do