Sha256: 355d928e707e5785dc4b05e92eeb3a14bbe14bd8f2096fc6df01c00867e61272

Contents?: true

Size: 419 Bytes

Versions: 51

Compression:

Stored size: 419 Bytes

Contents

Rails.application.routes.draw do
  get 'report', to: 'marty/report#index'
end

Marty::Engine.routes.draw do
  match via: [:get, :post], 'rpc/evaluate(.:format)' => 'rpc', as: :rpc
  match via: [:get, :post], 'report(.:format)' => 'report#index', as: :report
  get  'job/download' => 'job', as: :job
  post 'delayed_job/trigger' => 'delayed_job#trigger', as: :trigger_delayed_job
  get  'diag', to: 'diagnostic/#op'
end

Version data entries

51 entries across 51 versions & 1 rubygems

Version Path
marty-14.3.0 config/routes.rb
marty-14.0.0 config/routes.rb
marty-13.0.2 config/routes.rb
marty-11.0.0 config/routes.rb
marty-10.0.3 config/routes.rb
marty-10.0.2 config/routes.rb
marty-10.0.0 config/routes.rb
marty-9.5.1 config/routes.rb
marty-9.5.0 config/routes.rb
marty-9.3.3 config/routes.rb
marty-9.3.2 config/routes.rb
marty-9.3.0 config/routes.rb
marty-8.5.0 config/routes.rb
marty-8.4.1 config/routes.rb
marty-8.3.1 config/routes.rb
marty-8.2.0 config/routes.rb
marty-8.0.0 config/routes.rb
marty-6.1.0 config/routes.rb
marty-5.2.0 config/routes.rb
marty-5.1.4 config/routes.rb