Files
fizzy/app/models/command/visit_url.rb
T
2025-05-16 13:29:18 +02:00

12 lines
146 B
Ruby

class Command::VisitUrl < Command
store_accessor :data, :url
def title
"Visit #{url}"
end
def execute
redirect_to url
end
end