Files
fizzy/app/models/command/ask.rb
T
2025-08-13 15:14:12 +02:00

13 lines
286 B
Ruby

class Command::Ask < Command
store_accessor :data, :question, :card_ids
def title
"Ask '#{question}'"
end
def execute
Current.user.resume_or_start_conversation(question)
Command::Result::ShowModal.new(turbo_frame: "conversation", url: conversation_path)
end
end