Files
fizzy/app/models/command.rb
T

13 lines
204 B
Ruby

class Command
include Rails.application.routes.url_helpers
def execute
raise NotImplementedError
end
private
def redirect_to(...)
Command::Result::Redirection.new(...)
end
end