Method: Routing::ServiceConcern#service
- Defined in:
- app/concerns/routing/service_concern.rb
#service(service_name) ⇒ Object
5 6 7 8 9 10 |
# File 'app/concerns/routing/service_concern.rb', line 5 def service(service_name) resources service_name, only: [:index] do get :invoke, on: :collection post :call, on: :collection end end |