Sha256: af1adc6196875df73d38b421b963410852bb7a51db853413f05cf39fb9aee0b4

Contents?: true

Size: 336 Bytes

Versions: 11

Compression:

Stored size: 336 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

11 entries across 11 versions & 1 rubygems

Version Path
marty-1.2.9 config/routes.rb
marty-1.2.8 config/routes.rb
marty-1.2.7 config/routes.rb
marty-1.2.6 config/routes.rb
marty-1.2.5 config/routes.rb
marty-1.2.4 config/routes.rb
marty-1.2.3 config/routes.rb
marty-1.2.2 config/routes.rb
marty-1.2.1 config/routes.rb
marty-1.2.0 config/routes.rb
marty-1.1.9 config/routes.rb