Sha256: 7362c4a68e9daed1946b786a3e76e7be303255a559febd9b47ffd9360f9019cf
Contents?: true
Size: 513 Bytes
Versions: 62
Compression:
Stored size: 513 Bytes
Contents
EffectiveDatatables::Engine.routes.draw do scope :module => 'effective' do match 'datatables/:id(.:format)', to: 'datatables#show', via: [:get, :post], as: :datatable match 'datatables/:id/reorder(.:format)', to: 'datatables#reorder', via: [:post], as: :reorder_datatable match 'datatables/:id/download(.:format)', to: 'datatables#download', via: :get, as: :download_datatable end end Rails.application.routes.draw do mount EffectiveDatatables::Engine => '/', :as => 'effective_datatables' end
Version data entries
62 entries across 62 versions & 1 rubygems