在軌4.2
我有,我想,以填補與非足智多謀的路線類似前綴控制器全非足智多謀路線的軌道
class TwilioController < ApplicationController
def add_to_queue
end
def another_action
end
end
那麼我要訪問像這樣
theese動作控制器http://appdomain/twilio/add-to-queue
和 http://appdomain.com/twilio/another-action
我知道我能做到這一點,像這樣的路線文件
get 'twilio/add-to-queue', to: 'twilio#add_to_queue'
get 'twilio/another-action', to: 'twilio#another_action'
但是有沒有辦法將它們全部組合在一起,所以我不必在每條路線的開始處明確添加twilio
。