Files
fizzy/app/models/command/go_to_card.rb
T
2025-05-06 09:25:52 +02:00

17 lines
239 B
Ruby

class Command::GoToCard < Command
store_accessor :data, :card_id
def title
"Visit card '#{card.title}'"
end
def execute
redirect_to card
end
private
def card
user.accessible_cards.find(card_id)
end
end