Sha256: be8c490acfdb9e9c71dc2db4a05e31946fe142ad9344d36a8a2010292b1d8ce9
Contents?: true
Size: 593 Bytes
Versions: 1
Compression:
Stored size: 593 Bytes
Contents
Spree::Core::Engine.routes.draw do post '/paypal', :to => "paypal#express", :as => :paypal_express get '/paypal/confirm', :to => "paypal#confirm", :as => :confirm_paypal get '/paypal/cancel', :to => "paypal#cancel", :as => :cancel_paypal get '/paypal/notify', :to => "paypal#notify", :as => :notify_paypal namespace :admin do # Using :only here so it doesn't redraw those routes resources :orders, :only => [] do resources :payments, :only => [] do member do get 'paypal_refund' post 'paypal_refund' end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
spree_paypal_express_mutalis-2.0.4 | config/routes.rb |