Sha256: ab3b8e9686c1f63a36df5bcace218a2dc9552186136ab8bc5a5ab6fd09c11fe2

Contents?: true

Size: 511 Bytes

Versions: 15

Compression:

Stored size: 511 Bytes

Contents

DiscoApp::Engine.routes.draw do

  controller :webhooks do
    post 'webhooks' => :process_webhook, as: :webhooks
  end

  controller :charges do
    get 'charges/new' => :new, as: :new_charge
    post 'charges/create' => :create, as: :create_charge
    get 'charges/activate' => :activate, as: :activate_charge
  end

  controller :install do
    get 'install' => :install, as: :install
    get 'installing' => :installing, as: :installing
    get 'uninstalling' => :uninstalling, as: :uninstalling
  end

end

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
disco_app-0.3.0 config/routes.rb
disco_app-0.4.0 config/routes.rb
disco_app-0.4.1 config/routes.rb
disco_app-0.4.2 config/routes.rb
disco_app-0.4.3 config/routes.rb
disco_app-0.4.4 config/routes.rb
disco_app-0.5.0 config/routes.rb
disco_app-0.5.1 config/routes.rb
disco_app-0.5.2 config/routes.rb
disco_app-0.5.3 config/routes.rb
disco_app-0.5.4 config/routes.rb
disco_app-0.5.5 config/routes.rb
disco_app-0.5.6 config/routes.rb
disco_app-0.6.0 config/routes.rb
disco_app-0.6.1 config/routes.rb