Sha256: 88fc1c6e5cd300107a2abd9bfa6ee8b2cd830e199a161f681e632d2b4727e7a1

Contents?: true

Size: 335 Bytes

Versions: 14

Compression:

Stored size: 335 Bytes

Contents

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

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

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
marty-1.1.8 config/routes.rb
marty-1.1.7 config/routes.rb
marty-1.1.6 config/routes.rb
marty-1.1.5 config/routes.rb
marty-1.1.4 config/routes.rb
marty-1.1.3 config/routes.rb
marty-1.1.2 config/routes.rb
marty-1.1.1 config/routes.rb
marty-1.0.54 config/routes.rb
marty-1.0.53 config/routes.rb
marty-1.0.52 config/routes.rb
marty-1.0.51 config/routes.rb
marty-1.0.50 config/routes.rb
marty-1.0.48 config/routes.rb