Created
February 7, 2016 20:35
-
-
Save bld2104/5b8b26f0cb3dd4072e62 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
source 'https://rubygems.org' | |
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' | |
gem 'rails', '4.2.2' | |
# Use sqlite3 as the database for Active Record | |
gem 'sqlite3' | |
# Use SCSS for stylesheets | |
gem 'sass-rails', '~> 5.0' | |
# Use Uglifier as compressor for JavaScript assets | |
gem 'uglifier', '>= 1.3.0' | |
# Use CoffeeScript for .coffee assets and views | |
gem 'coffee-rails', '~> 4.1.0' | |
# See https://github.com/sstephenson/execjs#readme for more supported runtimes | |
# gem 'therubyracer', platforms: :ruby | |
# Use jquery as the JavaScript library | |
gem 'jquery-rails' | |
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks | |
gem 'turbolinks' | |
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder | |
gem 'jbuilder', '~> 2.0' | |
# bundle exec rake doc:rails generates the API under doc/api. | |
gem 'sdoc', '~> 0.4.0', group: :doc | |
# Use ActiveModel has_secure_password | |
# gem 'bcrypt', '~> 3.1.7' | |
# Use Unicorn as the app server | |
# gem 'unicorn' | |
# Use Capistrano for deployment | |
# gem 'capistrano-rails', group: :development | |
group :development, :test do | |
# Call 'byebug' anywhere in the code to stop execution and get a debugger console | |
gem 'byebug' | |
# Access an IRB console on exception pages or by using <%= console %> in views | |
gem 'web-console', '~> 2.0' | |
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring | |
gem 'spring' | |
end | |
gem 'spree', '3.0.5' | |
gem 'spree_gateway', github: 'spree/spree_gateway', branch: '3-0-stable' | |
gem 'spree_auth_devise', github: 'spree/spree_auth_devise', branch: '3-0-stable' | |
gem 'spree_backend' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Routes match in priority from top to bottom | |
Helper HTTP Verb Path Controller#Action | |
Path / Url | |
Path Match | |
spree_path /shop Spree::Core::Engine | |
root_path GET / static_pages#home | |
contact_path GET /contact(.:format) static_pages#contact | |
about_path GET /about(.:format) static_pages#about | |
partners_path GET /partners(.:format) static_pages#partners | |
inkinddonations_path GET /inkinddonations(.:format) static_pages#in-kind-donations | |
sponsors_path GET /sponsors(.:format) static_pages#sponsors | |
supporters_path GET /supporters(.:format) static_pages#supporters | |
shop_path GET /shop(.:format) static_pages#shop | |
events_path GET /events(.:format) static_pages#events | |
specialthanks_path GET /specialthanks(.:format) static_pages#special-thanks | |
why_path GET /why(.:format) static_pages#why | |
getinvolved_path GET /getinvolved(.:format) static_pages#getinvolved | |
volunteer_path GET /volunteer(.:format) static_pages#volunteer | |
donate_path GET /donate(.:format) static_pages#donate | |
workshares_path GET /workshares(.:format) static_pages#workshares | |
corporatematch_path GET /corporatematch(.:format) static_pages#corporatematch | |
waystogive_path GET /waystogive(.:format) static_pages#waystogive | |
wishlist_path GET /wishlist(.:format) static_pages#wishlist | |
secure_path GET /secure(.:format) static_pages#secure | |
privacy_path GET /privacy(.:format) static_pages#privacy | |
rules_path GET /rules(.:format) static_pages#rules | |
faq_path GET /faq(.:format) static_pages#faq | |
profile_path GET /profile(.:format) static_pages#profile | |
seeusers_path GET /seeusers(.:format) static_pages#seeusers | |
Routes for Spree::Core::Engine | |
new_spree_user_session_path GET /user/spree_user/sign_in(.:format) spree/user_sessions#new | |
spree_user_session_path POST /user/spree_user/sign_in(.:format) spree/user_sessions#create | |
destroy_spree_user_session_path GET /user/spree_user/logout(.:format) spree/user_sessions#destroy | |
spree_user_password_path POST /user/spree_user/password(.:format) spree/user_passwords#create | |
new_spree_user_password_path GET /user/spree_user/password/new(.:format) spree/user_passwords#new | |
edit_spree_user_password_path GET /user/spree_user/password/edit(.:format) spree/user_passwords#edit | |
PATCH /user/spree_user/password(.:format) spree/user_passwords#update | |
PUT /user/spree_user/password(.:format) spree/user_passwords#update | |
cancel_spree_user_registration_path GET /user/spree_user/cancel(.:format) spree/user_registrations#cancel | |
spree_user_registration_path POST /user/spree_user(.:format) spree/user_registrations#create | |
new_spree_user_registration_path GET /user/spree_user/sign_up(.:format) spree/user_registrations#new | |
edit_spree_user_registration_path GET /user/spree_user/edit(.:format) spree/user_registrations#edit | |
PATCH /user/spree_user(.:format) spree/user_registrations#update | |
PUT /user/spree_user(.:format) spree/user_registrations#update | |
DELETE /user/spree_user(.:format) spree/user_registrations#destroy | |
edit_user_path GET /users/:id/edit(.:format) spree/users#edit | |
user_path PATCH /users/:id(.:format) spree/users#update | |
PUT /users/:id(.:format) spree/users#update | |
login_path GET /login(.:format) spree/user_sessions#new | |
create_new_session_path POST /login(.:format) spree/user_sessions#create | |
logout_path GET /logout(.:format) spree/user_sessions#destroy | |
signup_path GET /signup(.:format) spree/user_registrations#new | |
registration_path POST /signup(.:format) spree/user_registrations#create | |
recover_password_path GET /password/recover(.:format) spree/user_passwords#new | |
reset_password_path POST /password/recover(.:format) spree/user_passwords#create | |
edit_password_path GET /password/change(.:format) spree/user_passwords#edit | |
update_password_path PUT /password/change(.:format) spree/user_passwords#update | |
checkout_registration_path GET /checkout/registration(.:format) spree/checkout#registration | |
update_checkout_registration_path PUT /checkout/registration(.:format) spree/checkout#update_registration | |
account_path POST /account(.:format) spree/users#create | |
new_account_path GET /account/new(.:format) spree/users#new | |
edit_account_path GET /account/edit(.:format) spree/users#edit | |
GET /account(.:format) spree/users#show | |
PATCH /account(.:format) spree/users#update | |
PUT /account(.:format) spree/users#update | |
DELETE /account(.:format) spree/users#destroy | |
new_admin_spree_user_session_path GET /user/spree_user/sign_in(.:format) spree/admin/user_sessions#new | |
admin_spree_user_session_path POST /user/spree_user/sign_in(.:format) spree/admin/user_sessions#create | |
destroy_admin_spree_user_session_path GET /user/spree_user/logout(.:format) spree/admin/user_sessions#destroy | |
admin_spree_user_password_path POST /user/spree_user/password(.:format) spree/admin/user_passwords#create | |
new_admin_spree_user_password_path GET /user/spree_user/password/new(.:format) spree/admin/user_passwords#new | |
edit_admin_spree_user_password_path GET /user/spree_user/password/edit(.:format) spree/admin/user_passwords#edit | |
PATCH /user/spree_user/password(.:format) spree/admin/user_passwords#update | |
PUT /user/spree_user/password(.:format) spree/admin/user_passwords#update | |
admin_unauthorized_path GET /admin/authorization_failure(.:format) spree/admin/user_sessions#authorization_failure | |
admin_login_path GET /admin/login(.:format) spree/admin/user_sessions#new | |
admin_create_new_session_path POST /admin/login(.:format) spree/admin/user_sessions#create | |
admin_logout_path GET /admin/logout(.:format) spree/admin/user_sessions#destroy | |
skrill_cancel_order_checkout_path GET /orders/:order_id/checkout/skrill_cancel(.:format) spree/checkout#skrill_cancel | |
skrill_return_order_checkout_path GET /orders/:order_id/checkout/skrill_return(.:format) spree/checkout#skrill_return | |
order_checkout_path POST /orders/:order_id/checkout(.:format) spree/checkout#create | |
new_order_checkout_path GET /orders/:order_id/checkout/new(.:format) spree/checkout#new | |
edit_order_checkout_path GET /orders/:order_id/checkout/edit(.:format) spree/checkout#edit | |
GET /orders/:order_id/checkout(.:format) spree/checkout#show | |
PATCH /orders/:order_id/checkout(.:format) spree/checkout#update | |
PUT /orders/:order_id/checkout(.:format) spree/checkout#update | |
DELETE /orders/:order_id/checkout(.:format) spree/checkout#destroy | |
skrill_path POST /skrill(.:format) spree/skrill_status#update | |
root_path GET / spree/home#index | |
products_path GET /products(.:format) spree/products#index | |
product_path GET /products/:id(.:format) spree/products#show | |
locale_set_path GET /locale/set(.:format) spree/locale#set | |
update_checkout_path PATCH /checkout/update/:state(.:format) spree/checkout#update | |
checkout_state_path GET /checkout/:state(.:format) spree/checkout#edit | |
checkout_path GET /checkout(.:format) spree/checkout#edit | |
orders_populate_path GET /orders/populate(.:format) redirect(301) | |
populate_orders_path POST /orders/populate(.:format) spree/orders#populate | |
edit_order_path GET /orders/:id/edit(.:format) spree/orders#edit | |
order_path GET /orders/:id(.:format) spree/orders#show | |
PATCH /orders/:id(.:format) spree/orders#update | |
PUT /orders/:id(.:format) spree/orders#update | |
cart_path GET /cart(.:format) spree/orders#edit | |
update_cart_path PATCH /cart(.:format) spree/orders#update | |
empty_cart_path PUT /cart/empty(.:format) spree/orders#empty | |
nested_taxons_path GET /t/*id(.:format) spree/taxons#show | |
unauthorized_path GET /unauthorized(.:format) spree/home#unauthorized | |
cvv_path GET /content/cvv(.:format) spree/content#cvv | |
content_path GET /content/*path(.:format) spree/content#show | |
cart_link_path GET /cart_link(.:format) spree/store#cart_link | |
admin_search_users_path GET /admin/search/users(.:format) spree/admin/search#users | |
admin_search_products_path GET /admin/search/products(.:format) spree/admin/search#products | |
admin_promotion_promotion_rules_path GET /admin/promotions/:promotion_id/promotion_rules(.:format) spree/admin/promotion_rules#index | |
POST /admin/promotions/:promotion_id/promotion_rules(.:format) spree/admin/promotion_rules#create | |
new_admin_promotion_promotion_rule_path GET /admin/promotions/:promotion_id/promotion_rules/new(.:format) spree/admin/promotion_rules#new | |
edit_admin_promotion_promotion_rule_path GET /admin/promotions/:promotion_id/promotion_rules/:id/edit(.:format) spree/admin/promotion_rules#edit | |
admin_promotion_promotion_rule_path GET /admin/promotions/:promotion_id/promotion_rules/:id(.:format) spree/admin/promotion_rules#show | |
PATCH /admin/promotions/:promotion_id/promotion_rules/:id(.:format) spree/admin/promotion_rules#update | |
PUT /admin/promotions/:promotion_id/promotion_rules/:id(.:format) spree/admin/promotion_rules#update | |
DELETE /admin/promotions/:promotion_id/promotion_rules/:id(.:format) spree/admin/promotion_rules#destroy | |
admin_promotion_promotion_actions_path GET /admin/promotions/:promotion_id/promotion_actions(.:format) spree/admin/promotion_actions#index | |
POST /admin/promotions/:promotion_id/promotion_actions(.:format) spree/admin/promotion_actions#create | |
new_admin_promotion_promotion_action_path GET /admin/promotions/:promotion_id/promotion_actions/new(.:format) spree/admin/promotion_actions#new | |
edit_admin_promotion_promotion_action_path GET /admin/promotions/:promotion_id/promotion_actions/:id/edit(.:format) spree/admin/promotion_actions#edit | |
admin_promotion_promotion_action_path GET /admin/promotions/:promotion_id/promotion_actions/:id(.:format) spree/admin/promotion_actions#show | |
PATCH /admin/promotions/:promotion_id/promotion_actions/:id(.:format) spree/admin/promotion_actions#update | |
PUT /admin/promotions/:promotion_id/promotion_actions/:id(.:format) spree/admin/promotion_actions#update | |
DELETE /admin/promotions/:promotion_id/promotion_actions/:id(.:format) spree/admin/promotion_actions#destroy | |
admin_promotions_path GET /admin/promotions(.:format) spree/admin/promotions#index | |
POST /admin/promotions(.:format) spree/admin/promotions#create | |
new_admin_promotion_path GET /admin/promotions/new(.:format) spree/admin/promotions#new | |
edit_admin_promotion_path GET /admin/promotions/:id/edit(.:format) spree/admin/promotions#edit | |
admin_promotion_path GET /admin/promotions/:id(.:format) spree/admin/promotions#show | |
PATCH /admin/promotions/:id(.:format) spree/admin/promotions#update | |
PUT /admin/promotions/:id(.:format) spree/admin/promotions#update | |
DELETE /admin/promotions/:id(.:format) spree/admin/promotions#destroy | |
admin_promotion_categories_path GET /admin/promotion_categories(.:format) spree/admin/promotion_categories#index | |
POST /admin/promotion_categories(.:format) spree/admin/promotion_categories#create | |
new_admin_promotion_category_path GET /admin/promotion_categories/new(.:format) spree/admin/promotion_categories#new | |
edit_admin_promotion_category_path GET /admin/promotion_categories/:id/edit(.:format) spree/admin/promotion_categories#edit | |
admin_promotion_category_path PATCH /admin/promotion_categories/:id(.:format) spree/admin/promotion_categories#update | |
PUT /admin/promotion_categories/:id(.:format) spree/admin/promotion_categories#update | |
DELETE /admin/promotion_categories/:id(.:format) spree/admin/promotion_categories#destroy | |
admin_zones_path GET /admin/zones(.:format) spree/admin/zones#index | |
POST /admin/zones(.:format) spree/admin/zones#create | |
new_admin_zone_path GET /admin/zones/new(.:format) spree/admin/zones#new | |
edit_admin_zone_path GET /admin/zones/:id/edit(.:format) spree/admin/zones#edit | |
admin_zone_path GET /admin/zones/:id(.:format) spree/admin/zones#show | |
PATCH /admin/zones/:id(.:format) spree/admin/zones#update | |
PUT /admin/zones/:id(.:format) spree/admin/zones#update | |
DELETE /admin/zones/:id(.:format) spree/admin/zones#destroy | |
admin_country_states_path GET /admin/countries/:country_id/states(.:format) spree/admin/states#index | |
POST /admin/countries/:country_id/states(.:format) spree/admin/states#create | |
new_admin_country_state_path GET /admin/countries/:country_id/states/new(.:format) spree/admin/states#new | |
edit_admin_country_state_path GET /admin/countries/:country_id/states/:id/edit(.:format) spree/admin/states#edit | |
admin_country_state_path GET /admin/countries/:country_id/states/:id(.:format) spree/admin/states#show | |
PATCH /admin/countries/:country_id/states/:id(.:format) spree/admin/states#update | |
PUT /admin/countries/:country_id/states/:id(.:format) spree/admin/states#update | |
DELETE /admin/countries/:country_id/states/:id(.:format) spree/admin/states#destroy | |
admin_countries_path GET /admin/countries(.:format) spree/admin/countries#index | |
POST /admin/countries(.:format) spree/admin/countries#create | |
new_admin_country_path GET /admin/countries/new(.:format) spree/admin/countries#new | |
edit_admin_country_path GET /admin/countries/:id/edit(.:format) spree/admin/countries#edit | |
admin_country_path GET /admin/countries/:id(.:format) spree/admin/countries#show | |
PATCH /admin/countries/:id(.:format) spree/admin/countries#update | |
PUT /admin/countries/:id(.:format) spree/admin/countries#update | |
DELETE /admin/countries/:id(.:format) spree/admin/countries#destroy | |
admin_states_path GET /admin/states(.:format) spree/admin/states#index | |
POST /admin/states(.:format) spree/admin/states#create | |
new_admin_state_path GET /admin/states/new(.:format) spree/admin/states#new | |
edit_admin_state_path GET /admin/states/:id/edit(.:format) spree/admin/states#edit | |
admin_state_path GET /admin/states/:id(.:format) spree/admin/states#show | |
PATCH /admin/states/:id(.:format) spree/admin/states#update | |
PUT /admin/states/:id(.:format) spree/admin/states#update | |
DELETE /admin/states/:id(.:format) spree/admin/states#destroy | |
admin_tax_categories_path GET /admin/tax_categories(.:format) spree/admin/tax_categories#index | |
POST /admin/tax_categories(.:format) spree/admin/tax_categories#create | |
new_admin_tax_category_path GET /admin/tax_categories/new(.:format) spree/admin/tax_categories#new | |
edit_admin_tax_category_path GET /admin/tax_categories/:id/edit(.:format) spree/admin/tax_categories#edit | |
admin_tax_category_path GET /admin/tax_categories/:id(.:format) spree/admin/tax_categories#show | |
PATCH /admin/tax_categories/:id(.:format) spree/admin/tax_categories#update | |
PUT /admin/tax_categories/:id(.:format) spree/admin/tax_categories#update | |
DELETE /admin/tax_categories/:id(.:format) spree/admin/tax_categories#destroy | |
update_positions_admin_product_product_properties_path POST /admin/products/:product_id/product_properties/update_positions(.:format) spree/admin/product_properties#update_positions | |
admin_product_product_properties_path GET /admin/products/:product_id/product_properties(.:format) spree/admin/product_properties#index | |
POST /admin/products/:product_id/product_properties(.:format) spree/admin/product_properties#create | |
new_admin_product_product_property_path GET /admin/products/:product_id/product_properties/new(.:format) spree/admin/product_properties#new | |
edit_admin_product_product_property_path GET /admin/products/:product_id/product_properties/:id/edit(.:format) spree/admin/product_properties#edit | |
admin_product_product_property_path GET /admin/products/:product_id/product_properties/:id(.:format) spree/admin/product_properties#show | |
PATCH /admin/products/:product_id/product_properties/:id(.:format) spree/admin/product_properties#update | |
PUT /admin/products/:product_id/product_properties/:id(.:format) spree/admin/product_properties#update | |
DELETE /admin/products/:product_id/product_properties/:id(.:format) spree/admin/product_properties#destroy | |
update_positions_admin_product_images_path POST /admin/products/:product_id/images/update_positions(.:format) spree/admin/images#update_positions | |
admin_product_images_path GET /admin/products/:product_id/images(.:format) spree/admin/images#index | |
POST /admin/products/:product_id/images(.:format) spree/admin/images#create | |
new_admin_product_image_path GET /admin/products/:product_id/images/new(.:format) spree/admin/images#new | |
edit_admin_product_image_path GET /admin/products/:product_id/images/:id/edit(.:format) spree/admin/images#edit | |
admin_product_image_path GET /admin/products/:product_id/images/:id(.:format) spree/admin/images#show | |
PATCH /admin/products/:product_id/images/:id(.:format) spree/admin/images#update | |
PUT /admin/products/:product_id/images/:id(.:format) spree/admin/images#update | |
DELETE /admin/products/:product_id/images/:id(.:format) spree/admin/images#destroy | |
clone_admin_product_path GET /admin/products/:id/clone(.:format) spree/admin/products#clone | |
stock_admin_product_path GET /admin/products/:id/stock(.:format) spree/admin/products#stock | |
update_positions_admin_product_variants_path POST /admin/products/:product_id/variants/update_positions(.:format) spree/admin/variants#update_positions | |
admin_product_variants_path GET /admin/products/:product_id/variants(.:format) spree/admin/variants#index | |
POST /admin/products/:product_id/variants(.:format) spree/admin/variants#create | |
new_admin_product_variant_path GET /admin/products/:product_id/variants/new(.:format) spree/admin/variants#new | |
edit_admin_product_variant_path GET /admin/products/:product_id/variants/:id/edit(.:format) spree/admin/variants#edit | |
admin_product_variant_path GET /admin/products/:product_id/variants/:id(.:format) spree/admin/variants#show | |
PATCH /admin/products/:product_id/variants/:id(.:format) spree/admin/variants#update | |
PUT /admin/products/:product_id/variants/:id(.:format) spree/admin/variants#update | |
DELETE /admin/products/:product_id/variants/:id(.:format) spree/admin/variants#destroy | |
admin_product_variants_including_master_path PATCH /admin/products/:product_id/variants_including_master/:id(.:format) spree/admin/variants_including_master#update | |
PUT /admin/products/:product_id/variants_including_master/:id(.:format) spree/admin/variants_including_master#update | |
admin_products_path GET /admin/products(.:format) spree/admin/products#index | |
POST /admin/products(.:format) spree/admin/products#create | |
new_admin_product_path GET /admin/products/new(.:format) spree/admin/products#new | |
edit_admin_product_path GET /admin/products/:id/edit(.:format) spree/admin/products#edit | |
admin_product_path GET /admin/products/:id(.:format) spree/admin/products#show | |
PATCH /admin/products/:id(.:format) spree/admin/products#update | |
PUT /admin/products/:id(.:format) spree/admin/products#update | |
DELETE /admin/products/:id(.:format) spree/admin/products#destroy | |
admin_search_variants_path GET /admin/variants/search(.:format) spree/admin/variants#search | |
update_positions_admin_option_types_path POST /admin/option_types/update_positions(.:format) spree/admin/option_types#update_positions | |
update_values_positions_admin_option_types_path POST /admin/option_types/update_values_positions(.:format) spree/admin/option_types#update_values_positions | |
admin_option_types_path GET /admin/option_types(.:format) spree/admin/option_types#index | |
POST /admin/option_types(.:format) spree/admin/option_types#create | |
new_admin_option_type_path GET /admin/option_types/new(.:format) spree/admin/option_types#new | |
edit_admin_option_type_path GET /admin/option_types/:id/edit(.:format) spree/admin/option_types#edit | |
admin_option_type_path GET /admin/option_types/:id(.:format) spree/admin/option_types#show | |
PATCH /admin/option_types/:id(.:format) spree/admin/option_types#update | |
PUT /admin/option_types/:id(.:format) spree/admin/option_types#update | |
DELETE /admin/option_types/:id(.:format) spree/admin/option_types#destroy | |
admin_option_value_path DELETE /admin/option_values/:id(.:format) spree/admin/option_values#destroy | |
filtered_admin_properties_path GET /admin/properties/filtered(.:format) spree/admin/properties#filtered | |
admin_properties_path GET /admin/properties(.:format) spree/admin/properties#index | |
POST /admin/properties(.:format) spree/admin/properties#create | |
new_admin_property_path GET /admin/properties/new(.:format) spree/admin/properties#new | |
edit_admin_property_path GET /admin/properties/:id/edit(.:format) spree/admin/properties#edit | |
admin_property_path GET /admin/properties/:id(.:format) spree/admin/properties#show | |
PATCH /admin/properties/:id(.:format) spree/admin/properties#update | |
PUT /admin/properties/:id(.:format) spree/admin/properties#update | |
DELETE /admin/properties/:id(.:format) spree/admin/properties#destroy | |
admin_product_property_path DELETE /admin/product_properties/:id(.:format) spree/admin/product_properties#destroy | |
select_admin_prototype_path GET /admin/prototypes/:id/select(.:format) spree/admin/prototypes#select | |
available_admin_prototypes_path GET /admin/prototypes/available(.:format) spree/admin/prototypes#available | |
admin_prototypes_path GET /admin/prototypes(.:format) spree/admin/prototypes#index | |
POST /admin/prototypes(.:format) spree/admin/prototypes#create | |
new_admin_prototype_path GET /admin/prototypes/new(.:format) spree/admin/prototypes#new | |
edit_admin_prototype_path GET /admin/prototypes/:id/edit(.:format) spree/admin/prototypes#edit | |
admin_prototype_path GET /admin/prototypes/:id(.:format) spree/admin/prototypes#show | |
PATCH /admin/prototypes/:id(.:format) spree/admin/prototypes#update | |
PUT /admin/prototypes/:id(.:format) spree/admin/prototypes#update | |
DELETE /admin/prototypes/:id(.:format) spree/admin/prototypes#destroy | |
cart_admin_order_path GET /admin/orders/:id/cart(.:format) spree/admin/orders#cart | |
resend_admin_order_path POST /admin/orders/:id/resend(.:format) spree/admin/orders#resend | |
open_adjustments_admin_order_path GET /admin/orders/:id/open_adjustments(.:format) spree/admin/orders#open_adjustments | |
close_adjustments_admin_order_path GET /admin/orders/:id/close_adjustments(.:format) spree/admin/orders#close_adjustments | |
approve_admin_order_path PUT /admin/orders/:id/approve(.:format) spree/admin/orders#approve | |
cancel_admin_order_path PUT /admin/orders/:id/cancel(.:format) spree/admin/orders#cancel | |
resume_admin_order_path PUT /admin/orders/:id/resume(.:format) spree/admin/orders#resume | |
admin_order_state_changes_path GET /admin/orders/:order_id/state_changes(.:format) spree/admin/state_changes#index | |
admin_order_customer_path POST /admin/orders/:order_id/customer(.:format) spree/admin/orders/customer_details#create | |
new_admin_order_customer_path GET /admin/orders/:order_id/customer/new(.:format) spree/admin/orders/customer_details#new | |
edit_admin_order_customer_path GET /admin/orders/:order_id/customer/edit(.:format) spree/admin/orders/customer_details#edit | |
GET /admin/orders/:order_id/customer(.:format) spree/admin/orders/customer_details#show | |
PATCH /admin/orders/:order_id/customer(.:format) spree/admin/orders/customer_details#update | |
PUT /admin/orders/:order_id/customer(.:format) spree/admin/orders/customer_details#update | |
DELETE /admin/orders/:order_id/customer(.:format) spree/admin/orders/customer_details#destroy | |
refund_admin_order_customer_return_path PUT /admin/orders/:order_id/customer_returns/:id/refund(.:format) spree/admin/customer_returns#refund | |
admin_order_customer_returns_path GET /admin/orders/:order_id/customer_returns(.:format) spree/admin/customer_returns#index | |
POST /admin/orders/:order_id/customer_returns(.:format) spree/admin/customer_returns#create | |
new_admin_order_customer_return_path GET /admin/orders/:order_id/customer_returns/new(.:format) spree/admin/customer_returns#new | |
edit_admin_order_customer_return_path GET /admin/orders/:order_id/customer_returns/:id/edit(.:format) spree/admin/customer_returns#edit | |
admin_order_customer_return_path PATCH /admin/orders/:order_id/customer_returns/:id(.:format) spree/admin/customer_returns#update | |
PUT /admin/orders/:order_id/customer_returns/:id(.:format) spree/admin/customer_returns#update | |
admin_order_adjustments_path GET /admin/orders/:order_id/adjustments(.:format) spree/admin/adjustments#index | |
POST /admin/orders/:order_id/adjustments(.:format) spree/admin/adjustments#create | |
new_admin_order_adjustment_path GET /admin/orders/:order_id/adjustments/new(.:format) spree/admin/adjustments#new | |
edit_admin_order_adjustment_path GET /admin/orders/:order_id/adjustments/:id/edit(.:format) spree/admin/adjustments#edit | |
admin_order_adjustment_path GET /admin/orders/:order_id/adjustments/:id(.:format) spree/admin/adjustments#show | |
PATCH /admin/orders/:order_id/adjustments/:id(.:format) spree/admin/adjustments#update | |
PUT /admin/orders/:order_id/adjustments/:id(.:format) spree/admin/adjustments#update | |
DELETE /admin/orders/:order_id/adjustments/:id(.:format) spree/admin/adjustments#destroy | |
fire_admin_order_return_authorization_path PUT /admin/orders/:order_id/return_authorizations/:id/fire(.:format) spree/admin/return_authorizations#fire | |
admin_order_return_authorizations_path GET /admin/orders/:order_id/return_authorizations(.:format) spree/admin/return_authorizations#index | |
POST /admin/orders/:order_id/return_authorizations(.:format) spree/admin/return_authorizations#create | |
new_admin_order_return_authorization_path GET /admin/orders/:order_id/return_authorizations/new(.:format) spree/admin/return_authorizations#new | |
edit_admin_order_return_authorization_path GET /admin/orders/:order_id/return_authorizations/:id/edit(.:format) spree/admin/return_authorizations#edit | |
admin_order_return_authorization_path GET /admin/orders/:order_id/return_authorizations/:id(.:format) spree/admin/return_authorizations#show | |
PATCH /admin/orders/:order_id/return_authorizations/:id(.:format) spree/admin/return_authorizations#update | |
PUT /admin/orders/:order_id/return_authorizations/:id(.:format) spree/admin/return_authorizations#update | |
DELETE /admin/orders/:order_id/return_authorizations/:id(.:format) spree/admin/return_authorizations#destroy | |
fire_admin_order_payment_path PUT /admin/orders/:order_id/payments/:id/fire(.:format) spree/admin/payments#fire | |
admin_order_payment_log_entries_path GET /admin/orders/:order_id/payments/:payment_id/log_entries(.:format) spree/admin/log_entries#index | |
POST /admin/orders/:order_id/payments/:payment_id/log_entries(.:format) spree/admin/log_entries#create | |
new_admin_order_payment_log_entry_path GET /admin/orders/:order_id/payments/:payment_id/log_entries/new(.:format) spree/admin/log_entries#new | |
edit_admin_order_payment_log_entry_path GET /admin/orders/:order_id/payments/:payment_id/log_entries/:id/edit(.:format) spree/admin/log_entries#edit | |
admin_order_payment_log_entry_path GET /admin/orders/:order_id/payments/:payment_id/log_entries/:id(.:format) spree/admin/log_entries#show | |
PATCH /admin/orders/:order_id/payments/:payment_id/log_entries/:id(.:format) spree/admin/log_entries#update | |
PUT /admin/orders/:order_id/payments/:payment_id/log_entries/:id(.:format) spree/admin/log_entries#update | |
DELETE /admin/orders/:order_id/payments/:payment_id/log_entries/:id(.:format) spree/admin/log_entries#destroy | |
admin_order_payment_refunds_path POST /admin/orders/:order_id/payments/:payment_id/refunds(.:format) spree/admin/refunds#create | |
new_admin_order_payment_refund_path GET /admin/orders/:order_id/payments/:payment_id/refunds/new(.:format) spree/admin/refunds#new | |
edit_admin_order_payment_refund_path GET /admin/orders/:order_id/payments/:payment_id/refunds/:id/edit(.:format) spree/admin/refunds#edit | |
admin_order_payment_refund_path PATCH /admin/orders/:order_id/payments/:payment_id/refunds/:id(.:format) spree/admin/refunds#update | |
PUT /admin/orders/:order_id/payments/:payment_id/refunds/:id(.:format) spree/admin/refunds#update | |
admin_order_payments_path GET /admin/orders/:order_id/payments(.:format) spree/admin/payments#index | |
POST /admin/orders/:order_id/payments(.:format) spree/admin/payments#create | |
new_admin_order_payment_path GET /admin/orders/:order_id/payments/new(.:format) spree/admin/payments#new | |
edit_admin_order_payment_path GET /admin/orders/:order_id/payments/:id/edit(.:format) spree/admin/payments#edit | |
admin_order_payment_path GET /admin/orders/:order_id/payments/:id(.:format) spree/admin/payments#show | |
PATCH /admin/orders/:order_id/payments/:id(.:format) spree/admin/payments#update | |
PUT /admin/orders/:order_id/payments/:id(.:format) spree/admin/payments#update | |
DELETE /admin/orders/:order_id/payments/:id(.:format) spree/admin/payments#destroy | |
perform_admin_order_reimbursement_path POST /admin/orders/:order_id/reimbursements/:id/perform(.:format) spree/admin/reimbursements#perform | |
admin_order_reimbursements_path GET /admin/orders/:order_id/reimbursements(.:format) spree/admin/reimbursements#index | |
POST /admin/orders/:order_id/reimbursements(.:format) spree/admin/reimbursements#create | |
edit_admin_order_reimbursement_path GET /admin/orders/:order_id/reimbursements/:id/edit(.:format) spree/admin/reimbursements#edit | |
admin_order_reimbursement_path GET /admin/orders/:order_id/reimbursements/:id(.:format) spree/admin/reimbursements#show | |
PATCH /admin/orders/:order_id/reimbursements/:id(.:format) spree/admin/reimbursements#update | |
PUT /admin/orders/:order_id/reimbursements/:id(.:format) spree/admin/reimbursements#update | |
admin_orders_path GET /admin/orders(.:format) spree/admin/orders#index | |
POST /admin/orders(.:format) spree/admin/orders#create | |
new_admin_order_path GET /admin/orders/new(.:format) spree/admin/orders#new | |
edit_admin_order_path GET /admin/orders/:id/edit(.:format) spree/admin/orders#edit | |
admin_order_path PATCH /admin/orders/:id(.:format) spree/admin/orders#update | |
PUT /admin/orders/:id(.:format) spree/admin/orders#update | |
DELETE /admin/orders/:id(.:format) spree/admin/orders#destroy | |
clear_cache_admin_general_settings_path POST /admin/general_settings/clear_cache(.:format) spree/admin/general_settings#clear_cache | |
admin_general_settings_path POST /admin/general_settings(.:format) spree/admin/general_settings#create | |
new_admin_general_settings_path GET /admin/general_settings/new(.:format) spree/admin/general_settings#new | |
edit_admin_general_settings_path GET /admin/general_settings/edit(.:format) spree/admin/general_settings#edit | |
GET /admin/general_settings(.:format) spree/admin/general_settings#show | |
PATCH /admin/general_settings(.:format) spree/admin/general_settings#update | |
PUT /admin/general_settings(.:format) spree/admin/general_settings#update | |
DELETE /admin/general_settings(.:format) spree/admin/general_settings#destroy | |
admin_return_item_path PATCH /admin/return_items/:id(.:format) spree/admin/return_items#update | |
PUT /admin/return_items/:id(.:format) spree/admin/return_items#update | |
update_positions_admin_taxonomies_path POST /admin/taxonomies/update_positions(.:format) spree/admin/taxonomies#update_positions | |
admin_taxonomy_taxons_path GET /admin/taxonomies/:taxonomy_id/taxons(.:format) spree/admin/taxons#index | |
POST /admin/taxonomies/:taxonomy_id/taxons(.:format) spree/admin/taxons#create | |
new_admin_taxonomy_taxon_path GET /admin/taxonomies/:taxonomy_id/taxons/new(.:format) spree/admin/taxons#new | |
edit_admin_taxonomy_taxon_path GET /admin/taxonomies/:taxonomy_id/taxons/:id/edit(.:format) spree/admin/taxons#edit | |
admin_taxonomy_taxon_path GET /admin/taxonomies/:taxonomy_id/taxons/:id(.:format) spree/admin/taxons#show | |
PATCH /admin/taxonomies/:taxonomy_id/taxons/:id(.:format) spree/admin/taxons#update | |
PUT /admin/taxonomies/:taxonomy_id/taxons/:id(.:format) spree/admin/taxons#update | |
DELETE /admin/taxonomies/:taxonomy_id/taxons/:id(.:format) spree/admin/taxons#destroy | |
admin_taxonomies_path GET /admin/taxonomies(.:format) spree/admin/taxonomies#index | |
POST /admin/taxonomies(.:format) spree/admin/taxonomies#create | |
new_admin_taxonomy_path GET /admin/taxonomies/new(.:format) spree/admin/taxonomies#new | |
edit_admin_taxonomy_path GET /admin/taxonomies/:id/edit(.:format) spree/admin/taxonomies#edit | |
admin_taxonomy_path GET /admin/taxonomies/:id(.:format) spree/admin/taxonomies#show | |
PATCH /admin/taxonomies/:id(.:format) spree/admin/taxonomies#update | |
PUT /admin/taxonomies/:id(.:format) spree/admin/taxonomies#update | |
DELETE /admin/taxonomies/:id(.:format) spree/admin/taxonomies#destroy | |
search_admin_taxons_path GET /admin/taxons/search(.:format) spree/admin/taxons#search | |
admin_taxons_path GET /admin/taxons(.:format) spree/admin/taxons#index | |
admin_taxon_path GET /admin/taxons/:id(.:format) spree/admin/taxons#show | |
sales_total_admin_reports_path GET /admin/reports/sales_total(.:format) spree/admin/reports#sales_total | |
POST /admin/reports/sales_total(.:format) spree/admin/reports#sales_total | |
admin_reports_path GET /admin/reports(.:format) spree/admin/reports#index | |
admin_reimbursement_types_path GET /admin/reimbursement_types(.:format) spree/admin/reimbursement_types#index | |
admin_refund_reasons_path GET /admin/refund_reasons(.:format) spree/admin/refund_reasons#index | |
POST /admin/refund_reasons(.:format) spree/admin/refund_reasons#create | |
new_admin_refund_reason_path GET /admin/refund_reasons/new(.:format) spree/admin/refund_reasons#new | |
edit_admin_refund_reason_path GET /admin/refund_reasons/:id/edit(.:format) spree/admin/refund_reasons#edit | |
admin_refund_reason_path PATCH /admin/refund_reasons/:id(.:format) spree/admin/refund_reasons#update | |
PUT /admin/refund_reasons/:id(.:format) spree/admin/refund_reasons#update | |
admin_return_authorization_reasons_path GET /admin/return_authorization_reasons(.:format) spree/admin/return_authorization_reasons#index | |
POST /admin/return_authorization_reasons(.:format) spree/admin/return_authorization_reasons#create | |
new_admin_return_authorization_reason_path GET /admin/return_authorization_reasons/new(.:format) spree/admin/return_authorization_reasons#new | |
edit_admin_return_authorization_reason_path GET /admin/return_authorization_reasons/:id/edit(.:format) spree/admin/return_authorization_reasons#edit | |
admin_return_authorization_reason_path PATCH /admin/return_authorization_reasons/:id(.:format) spree/admin/return_authorization_reasons#update | |
PUT /admin/return_authorization_reasons/:id(.:format) spree/admin/return_authorization_reasons#update | |
admin_shipping_methods_path GET /admin/shipping_methods(.:format) spree/admin/shipping_methods#index | |
POST /admin/shipping_methods(.:format) spree/admin/shipping_methods#create | |
new_admin_shipping_method_path GET /admin/shipping_methods/new(.:format) spree/admin/shipping_methods#new | |
edit_admin_shipping_method_path GET /admin/shipping_methods/:id/edit(.:format) spree/admin/shipping_methods#edit | |
admin_shipping_method_path GET /admin/shipping_methods/:id(.:format) spree/admin/shipping_methods#show | |
PATCH /admin/shipping_methods/:id(.:format) spree/admin/shipping_methods#update | |
PUT /admin/shipping_methods/:id(.:format) spree/admin/shipping_methods#update | |
DELETE /admin/shipping_methods/:id(.:format) spree/admin/shipping_methods#destroy | |
admin_shipping_categories_path GET /admin/shipping_categories(.:format) spree/admin/shipping_categories#index | |
POST /admin/shipping_categories(.:format) spree/admin/shipping_categories#create | |
new_admin_shipping_category_path GET /admin/shipping_categories/new(.:format) spree/admin/shipping_categories#new | |
edit_admin_shipping_category_path GET /admin/shipping_categories/:id/edit(.:format) spree/admin/shipping_categories#edit | |
admin_shipping_category_path GET /admin/shipping_categories/:id(.:format) spree/admin/shipping_categories#show | |
PATCH /admin/shipping_categories/:id(.:format) spree/admin/shipping_categories#update | |
PUT /admin/shipping_categories/:id(.:format) spree/admin/shipping_categories#update | |
DELETE /admin/shipping_categories/:id(.:format) spree/admin/shipping_categories#destroy | |
admin_stock_transfers_path GET /admin/stock_transfers(.:format) spree/admin/stock_transfers#index | |
POST /admin/stock_transfers(.:format) spree/admin/stock_transfers#create | |
new_admin_stock_transfer_path GET /admin/stock_transfers/new(.:format) spree/admin/stock_transfers#new | |
admin_stock_transfer_path GET /admin/stock_transfers/:id(.:format) spree/admin/stock_transfers#show | |
admin_stock_location_stock_movements_path GET /admin/stock_locations/:stock_location_id/stock_movements(.:format) spree/admin/stock_movements#index | |
POST /admin/stock_locations/:stock_location_id/stock_movements(.:format) spree/admin/stock_movements#create | |
new_admin_stock_location_stock_movement_path GET /admin/stock_locations/:stock_location_id/stock_movements/new(.:format) spree/admin/stock_movements#new | |
admin_stock_location_stock_movement_path GET /admin/stock_locations/:stock_location_id/stock_movements/:id(.:format) spree/admin/stock_movements#show | |
transfer_stock_admin_stock_locations_path POST /admin/stock_locations/transfer_stock(.:format) spree/admin/stock_locations#transfer_stock | |
admin_stock_locations_path GET /admin/stock_locations(.:format) spree/admin/stock_locations#index | |
POST /admin/stock_locations(.:format) spree/admin/stock_locations#create | |
new_admin_stock_location_path GET /admin/stock_locations/new(.:format) spree/admin/stock_locations#new | |
edit_admin_stock_location_path GET /admin/stock_locations/:id/edit(.:format) spree/admin/stock_locations#edit | |
admin_stock_location_path GET /admin/stock_locations/:id(.:format) spree/admin/stock_locations#show | |
PATCH /admin/stock_locations/:id(.:format) spree/admin/stock_locations#update | |
PUT /admin/stock_locations/:id(.:format) spree/admin/stock_locations#update | |
DELETE /admin/stock_locations/:id(.:format) spree/admin/stock_locations#destroy | |
admin_stock_items_path POST /admin/stock_items(.:format) spree/admin/stock_items#create | |
admin_stock_item_path PATCH /admin/stock_items/:id(.:format) spree/admin/stock_items#update | |
PUT /admin/stock_items/:id(.:format) spree/admin/stock_items#update | |
DELETE /admin/stock_items/:id(.:format) spree/admin/stock_items#destroy | |
admin_tax_rates_path GET /admin/tax_rates(.:format) spree/admin/tax_rates#index | |
POST /admin/tax_rates(.:format) spree/admin/tax_rates#create | |
new_admin_tax_rate_path GET /admin/tax_rates/new(.:format) spree/admin/tax_rates#new | |
edit_admin_tax_rate_path GET /admin/tax_rates/:id/edit(.:format) spree/admin/tax_rates#edit | |
admin_tax_rate_path GET /admin/tax_rates/:id(.:format) spree/admin/tax_rates#show | |
PATCH /admin/tax_rates/:id(.:format) spree/admin/tax_rates#update | |
PUT /admin/tax_rates/:id(.:format) spree/admin/tax_rates#update | |
DELETE /admin/tax_rates/:id(.:format) spree/admin/tax_rates#destroy | |
admin_trackers_path GET /admin/trackers(.:format) spree/admin/trackers#index | |
POST /admin/trackers(.:format) spree/admin/trackers#create | |
new_admin_tracker_path GET /admin/trackers/new(.:format) spree/admin/trackers#new | |
edit_admin_tracker_path GET /admin/trackers/:id/edit(.:format) spree/admin/trackers#edit | |
admin_tracker_path GET /admin/trackers/:id(.:format) spree/admin/trackers#show | |
PATCH /admin/trackers/:id(.:format) spree/admin/trackers#update | |
PUT /admin/trackers/:id(.:format) spree/admin/trackers#update | |
DELETE /admin/trackers/:id(.:format) spree/admin/trackers#destroy | |
admin_payment_methods_path GET /admin/payment_methods(.:format) spree/admin/payment_methods#index | |
POST /admin/payment_methods(.:format) spree/admin/payment_methods#create | |
new_admin_payment_method_path GET /admin/payment_methods/new(.:format) spree/admin/payment_methods#new | |
edit_admin_payment_method_path GET /admin/payment_methods/:id/edit(.:format) spree/admin/payment_methods#edit | |
admin_payment_method_path GET /admin/payment_methods/:id(.:format) spree/admin/payment_methods#show | |
PATCH /admin/payment_methods/:id(.:format) spree/admin/payment_methods#update | |
PUT /admin/payment_methods/:id(.:format) spree/admin/payment_methods#update | |
DELETE /admin/payment_methods/:id(.:format) spree/admin/payment_methods#destroy | |
admin_roles_path GET /admin/roles(.:format) spree/admin/roles#index | |
POST /admin/roles(.:format) spree/admin/roles#create | |
new_admin_role_path GET /admin/roles/new(.:format) spree/admin/roles#new | |
edit_admin_role_path GET /admin/roles/:id/edit(.:format) spree/admin/roles#edit | |
admin_role_path GET /admin/roles/:id(.:format) spree/admin/roles#show | |
PATCH /admin/roles/:id(.:format) spree/admin/roles#update | |
PUT /admin/roles/:id(.:format) spree/admin/roles#update | |
DELETE /admin/roles/:id(.:format) spree/admin/roles#destroy | |
orders_admin_user_path GET /admin/users/:id/orders(.:format) spree/admin/users#orders | |
items_admin_user_path GET /admin/users/:id/items(.:format) spree/admin/users#items | |
addresses_admin_user_path GET /admin/users/:id/addresses(.:format) spree/admin/users#addresses | |
PUT /admin/users/:id/addresses(.:format) spree/admin/users#addresses | |
admin_users_path GET /admin/users(.:format) spree/admin/users#index | |
POST /admin/users(.:format) spree/admin/users#create | |
new_admin_user_path GET /admin/users/new(.:format) spree/admin/users#new | |
edit_admin_user_path GET /admin/users/:id/edit(.:format) spree/admin/users#edit | |
admin_user_path GET /admin/users/:id(.:format) spree/admin/users#show | |
PATCH /admin/users/:id(.:format) spree/admin/users#update | |
PUT /admin/users/:id(.:format) spree/admin/users#update | |
DELETE /admin/users/:id(.:format) spree/admin/users#destroy | |
admin_path GET /admin(.:format) spree/admin/root#index | |
generate_api_key_admin_user_path PUT /admin/users/:id/generate_api_key(.:format) spree/admin/users#generate_api_key | |
clear_api_key_admin_user_path PUT /admin/users/:id/clear_api_key(.:format) spree/admin/users#clear_api_key | |
GET /admin/users(.:format) spree/admin/users#index | |
POST /admin/users(.:format) spree/admin/users#create | |
GET /admin/users/new(.:format) spree/admin/users#new | |
GET /admin/users/:id/edit(.:format) spree/admin/users#edit | |
GET /admin/users/:id(.:format) spree/admin/users#show | |
PATCH /admin/users/:id(.:format) spree/admin/users#update | |
PUT /admin/users/:id(.:format) spree/admin/users#update | |
DELETE /admin/users/:id(.:format) spree/admin/users#destroy | |
api_promotion_path GET /api/promotions/:id(.:format) spree/api/promotions#show {:format=>"json"} | |
api_product_images_path GET /api/products/:product_id/images(.:format) spree/api/images#index {:format=>"json"} | |
POST /api/products/:product_id/images(.:format) spree/api/images#create {:format=>"json"} | |
new_api_product_image_path GET /api/products/:product_id/images/new(.:format) spree/api/images#new {:format=>"json"} | |
edit_api_product_image_path GET /api/products/:product_id/images/:id/edit(.:format) spree/api/images#edit {:format=>"json"} | |
api_product_image_path GET /api/products/:product_id/images/:id(.:format) spree/api/images#show {:format=>"json"} | |
PATCH /api/products/:product_id/images/:id(.:format) spree/api/images#update {:format=>"json"} | |
PUT /api/products/:product_id/images/:id(.:format) spree/api/images#update {:format=>"json"} | |
DELETE /api/products/:product_id/images/:id(.:format) spree/api/images#destroy {:format=>"json"} | |
api_product_variants_path GET /api/products/:product_id/variants(.:format) spree/api/variants#index {:format=>"json"} | |
POST /api/products/:product_id/variants(.:format) spree/api/variants#create {:format=>"json"} | |
new_api_product_variant_path GET /api/products/:product_id/variants/new(.:format) spree/api/variants#new {:format=>"json"} | |
edit_api_product_variant_path GET /api/products/:product_id/variants/:id/edit(.:format) spree/api/variants#edit {:format=>"json"} | |
api_product_variant_path GET /api/products/:product_id/variants/:id(.:format) spree/api/variants#show {:format=>"json"} | |
PATCH /api/products/:product_id/variants/:id(.:format) spree/api/variants#update {:format=>"json"} | |
PUT /api/products/:product_id/variants/:id(.:format) spree/api/variants#update {:format=>"json"} | |
DELETE /api/products/:product_id/variants/:id(.:format) spree/api/variants#destroy {:format=>"json"} | |
api_product_product_properties_path GET /api/products/:product_id/product_properties(.:format) spree/api/product_properties#index {:format=>"json"} | |
POST /api/products/:product_id/product_properties(.:format) spree/api/product_properties#create {:format=>"json"} | |
new_api_product_product_property_path GET /api/products/:product_id/product_properties/new(.:format) spree/api/product_properties#new {:format=>"json"} | |
edit_api_product_product_property_path GET /api/products/:product_id/product_properties/:id/edit(.:format) spree/api/product_properties#edit {:format=>"json"} | |
api_product_product_property_path GET /api/products/:product_id/product_properties/:id(.:format) spree/api/product_properties#show {:format=>"json"} | |
PATCH /api/products/:product_id/product_properties/:id(.:format) spree/api/product_properties#update {:format=>"json"} | |
PUT /api/products/:product_id/product_properties/:id(.:format) spree/api/product_properties#update {:format=>"json"} | |
DELETE /api/products/:product_id/product_properties/:id(.:format) spree/api/product_properties#destroy {:format=>"json"} | |
api_products_path GET /api/products(.:format) spree/api/products#index {:format=>"json"} | |
POST /api/products(.:format) spree/api/products#create {:format=>"json"} | |
new_api_product_path GET /api/products/new(.:format) spree/api/products#new {:format=>"json"} | |
edit_api_product_path GET /api/products/:id/edit(.:format) spree/api/products#edit {:format=>"json"} | |
api_product_path GET /api/products/:id(.:format) spree/api/products#show {:format=>"json"} | |
PATCH /api/products/:id(.:format) spree/api/products#update {:format=>"json"} | |
PUT /api/products/:id(.:format) spree/api/products#update {:format=>"json"} | |
DELETE /api/products/:id(.:format) spree/api/products#destroy {:format=>"json"} | |
next_api_checkout_path PUT /api/checkouts/:id/next(.:format) spree/api/checkouts#next {:format=>"json"} | |
advance_api_checkout_path PUT /api/checkouts/:id/advance(.:format) spree/api/checkouts#advance {:format=>"json"} | |
cancel_api_checkout_path PUT /api/checkouts/:id/cancel(.:format) spree/api/checkouts#cancel {:format=>"json"} | |
empty_api_checkout_path PUT /api/checkouts/:id/empty(.:format) spree/api/checkouts#empty {:format=>"json"} | |
apply_coupon_code_api_checkout_path PUT /api/checkouts/:id/apply_coupon_code(.:format) spree/api/checkouts#apply_coupon_code {:format=>"json"} | |
api_checkout_line_items_path GET /api/checkouts/:checkout_id/line_items(.:format) spree/api/line_items#index {:format=>"json"} | |
POST /api/checkouts/:checkout_id/line_items(.:format) spree/api/line_items#create {:format=>"json"} | |
new_api_checkout_line_item_path GET /api/checkouts/:checkout_id/line_items/new(.:format) spree/api/line_items#new {:format=>"json"} | |
edit_api_checkout_line_item_path GET /api/checkouts/:checkout_id/line_items/:id/edit(.:format) spree/api/line_items#edit {:format=>"json"} | |
api_checkout_line_item_path GET /api/checkouts/:checkout_id/line_items/:id(.:format) spree/api/line_items#show {:format=>"json"} | |
PATCH /api/checkouts/:checkout_id/line_items/:id(.:format) spree/api/line_items#update {:format=>"json"} | |
PUT /api/checkouts/:checkout_id/line_items/:id(.:format) spree/api/line_items#update {:format=>"json"} | |
DELETE /api/checkouts/:checkout_id/line_items/:id(.:format) spree/api/line_items#destroy {:format=>"json"} | |
authorize_api_checkout_payment_path PUT /api/checkouts/:checkout_id/payments/:id/authorize(.:format) spree/api/payments#authorize {:format=>"json"} | |
capture_api_checkout_payment_path PUT /api/checkouts/:checkout_id/payments/:id/capture(.:format) spree/api/payments#capture {:format=>"json"} | |
purchase_api_checkout_payment_path PUT /api/checkouts/:checkout_id/payments/:id/purchase(.:format) spree/api/payments#purchase {:format=>"json"} | |
void_api_checkout_payment_path PUT /api/checkouts/:checkout_id/payments/:id/void(.:format) spree/api/payments#void {:format=>"json"} | |
credit_api_checkout_payment_path PUT /api/checkouts/:checkout_id/payments/:id/credit(.:format) spree/api/payments#credit {:format=>"json"} | |
api_checkout_payments_path GET /api/checkouts/:checkout_id/payments(.:format) spree/api/payments#index {:format=>"json"} | |
POST /api/checkouts/:checkout_id/payments(.:format) spree/api/payments#create {:format=>"json"} | |
new_api_checkout_payment_path GET /api/checkouts/:checkout_id/payments/new(.:format) spree/api/payments#new {:format=>"json"} | |
edit_api_checkout_payment_path GET /api/checkouts/:checkout_id/payments/:id/edit(.:format) spree/api/payments#edit {:format=>"json"} | |
api_checkout_payment_path GET /api/checkouts/:checkout_id/payments/:id(.:format) spree/api/payments#show {:format=>"json"} | |
PATCH /api/checkouts/:checkout_id/payments/:id(.:format) spree/api/payments#update {:format=>"json"} | |
PUT /api/checkouts/:checkout_id/payments/:id(.:format) spree/api/payments#update {:format=>"json"} | |
DELETE /api/checkouts/:checkout_id/payments/:id(.:format) spree/api/payments#destroy {:format=>"json"} | |
api_checkout_address_path GET /api/checkouts/:checkout_id/addresses/:id(.:format) spree/api/addresses#show {:format=>"json"} | |
PATCH /api/checkouts/:checkout_id/addresses/:id(.:format) spree/api/addresses#update {:format=>"json"} | |
PUT /api/checkouts/:checkout_id/addresses/:id(.:format) spree/api/addresses#update {:format=>"json"} | |
add_api_checkout_return_authorization_path PUT /api/checkouts/:checkout_id/return_authorizations/:id/add(.:format) spree/api/return_authorizations#add {:format=>"json"} | |
cancel_api_checkout_return_authorization_path PUT /api/checkouts/:checkout_id/return_authorizations/:id/cancel(.:format) spree/api/return_authorizations#cancel {:format=>"json"} | |
receive_api_checkout_return_authorization_path PUT /api/checkouts/:checkout_id/return_authorizations/:id/receive(.:format) spree/api/return_authorizations#receive {:format=>"json"} | |
api_checkout_return_authorizations_path GET /api/checkouts/:checkout_id/return_authorizations(.:format) spree/api/return_authorizations#index {:format=>"json"} | |
POST /api/checkouts/:checkout_id/return_authorizations(.:format) spree/api/return_authorizations#create {:format=>"json"} | |
new_api_checkout_return_authorization_path GET /api/checkouts/:checkout_id/return_authorizations/new(.:format) spree/api/return_authorizations#new {:format=>"json"} | |
edit_api_checkout_return_authorization_path GET /api/checkouts/:checkout_id/return_authorizations/:id/edit(.:format) spree/api/return_authorizations#edit {:format=>"json"} | |
api_checkout_return_authorization_path GET /api/checkouts/:checkout_id/return_authorizations/:id(.:format) spree/api/return_authorizations#show {:format=>"json"} | |
PATCH /api/checkouts/:checkout_id/return_authorizations/:id(.:format) spree/api/return_authorizations#update {:format=>"json"} | |
PUT /api/checkouts/:checkout_id/return_authorizations/:id(.:format) spree/api/return_authorizations#update {:format=>"json"} | |
DELETE /api/checkouts/:checkout_id/return_authorizations/:id(.:format) spree/api/return_authorizations#destroy {:format=>"json"} | |
api_checkout_path PATCH /api/checkouts/:id(.:format) spree/api/checkouts#update {:format=>"json"} | |
PUT /api/checkouts/:id(.:format) spree/api/checkouts#update {:format=>"json"} | |
api_variant_images_path GET /api/variants/:variant_id/images(.:format) spree/api/images#index {:format=>"json"} | |
POST /api/variants/:variant_id/images(.:format) spree/api/images#create {:format=>"json"} | |
new_api_variant_image_path GET /api/variants/:variant_id/images/new(.:format) spree/api/images#new {:format=>"json"} | |
edit_api_variant_image_path GET /api/variants/:variant_id/images/:id/edit(.:format) spree/api/images#edit {:format=>"json"} | |
api_variant_image_path GET /api/variants/:variant_id/images/:id(.:format) spree/api/images#show {:format=>"json"} | |
PATCH /api/variants/:variant_id/images/:id(.:format) spree/api/images#update {:format=>"json"} | |
PUT /api/variants/:variant_id/images/:id(.:format) spree/api/images#update {:format=>"json"} | |
DELETE /api/variants/:variant_id/images/:id(.:format) spree/api/images#destroy {:format=>"json"} | |
api_variants_path GET /api/variants(.:format) spree/api/variants#index {:format=>"json"} | |
POST /api/variants(.:format) spree/api/variants#create {:format=>"json"} | |
new_api_variant_path GET /api/variants/new(.:format) spree/api/variants#new {:format=>"json"} | |
edit_api_variant_path GET /api/variants/:id/edit(.:format) spree/api/variants#edit {:format=>"json"} | |
api_variant_path GET /api/variants/:id(.:format) spree/api/variants#show {:format=>"json"} | |
PATCH /api/variants/:id(.:format) spree/api/variants#update {:format=>"json"} | |
PUT /api/variants/:id(.:format) spree/api/variants#update {:format=>"json"} | |
DELETE /api/variants/:id(.:format) spree/api/variants#destroy {:format=>"json"} | |
api_option_type_option_values_path GET /api/option_types/:option_type_id/option_values(.:format) spree/api/option_values#index {:format=>"json"} | |
POST /api/option_types/:option_type_id/option_values(.:format) spree/api/option_values#create {:format=>"json"} | |
new_api_option_type_option_value_path GET /api/option_types/:option_type_id/option_values/new(.:format) spree/api/option_values#new {:format=>"json"} | |
edit_api_option_type_option_value_path GET /api/option_types/:option_type_id/option_values/:id/edit(.:format) spree/api/option_values#edit {:format=>"json"} | |
api_option_type_option_value_path GET /api/option_types/:option_type_id/option_values/:id(.:format) spree/api/option_values#show {:format=>"json"} | |
PATCH /api/option_types/:option_type_id/option_values/:id(.:format) spree/api/option_values#update {:format=>"json"} | |
PUT /api/option_types/:option_type_id/option_values/:id(.:format) spree/api/option_values#update {:format=>"json"} | |
DELETE /api/option_types/:option_type_id/option_values/:id(.:format) spree/api/option_values#destroy {:format=>"json"} | |
api_option_types_path GET /api/option_types(.:format) spree/api/option_types#index {:format=>"json"} | |
POST /api/option_types(.:format) spree/api/option_types#create {:format=>"json"} | |
new_api_option_type_path GET /api/option_types/new(.:format) spree/api/option_types#new {:format=>"json"} | |
edit_api_option_type_path GET /api/option_types/:id/edit(.:format) spree/api/option_types#edit {:format=>"json"} | |
api_option_type_path GET /api/option_types/:id(.:format) spree/api/option_types#show {:format=>"json"} | |
PATCH /api/option_types/:id(.:format) spree/api/option_types#update {:format=>"json"} | |
PUT /api/option_types/:id(.:format) spree/api/option_types#update {:format=>"json"} | |
DELETE /api/option_types/:id(.:format) spree/api/option_types#destroy {:format=>"json"} | |
api_option_values_path GET /api/option_values(.:format) spree/api/option_values#index {:format=>"json"} | |
POST /api/option_values(.:format) spree/api/option_values#create {:format=>"json"} | |
new_api_option_value_path GET /api/option_values/new(.:format) spree/api/option_values#new {:format=>"json"} | |
edit_api_option_value_path GET /api/option_values/:id/edit(.:format) spree/api/option_values#edit {:format=>"json"} | |
api_option_value_path GET /api/option_values/:id(.:format) spree/api/option_values#show {:format=>"json"} | |
PATCH /api/option_values/:id(.:format) spree/api/option_values#update {:format=>"json"} | |
PUT /api/option_values/:id(.:format) spree/api/option_values#update {:format=>"json"} | |
DELETE /api/option_values/:id(.:format) spree/api/option_values#destroy {:format=>"json"} | |
GET /api/option_values(.:format) spree/api/option_values#index {:format=>"json"} | |
api_my_orders_path GET /api/orders/mine(.:format) spree/api/orders#mine {:format=>"json"} | |
api_current_order_path GET /api/orders/current(.:format) spree/api/orders#current {:format=>"json"} | |
cancel_api_order_path PUT /api/orders/:id/cancel(.:format) spree/api/orders#cancel {:format=>"json"} | |
empty_api_order_path PUT /api/orders/:id/empty(.:format) spree/api/orders#empty {:format=>"json"} | |
apply_coupon_code_api_order_path PUT /api/orders/:id/apply_coupon_code(.:format) spree/api/orders#apply_coupon_code {:format=>"json"} | |
api_order_line_items_path GET /api/orders/:order_id/line_items(.:format) spree/api/line_items#index {:format=>"json"} | |
POST /api/orders/:order_id/line_items(.:format) spree/api/line_items#create {:format=>"json"} | |
new_api_order_line_item_path GET /api/orders/:order_id/line_items/new(.:format) spree/api/line_items#new {:format=>"json"} | |
edit_api_order_line_item_path GET /api/orders/:order_id/line_items/:id/edit(.:format) spree/api/line_items#edit {:format=>"json"} | |
api_order_line_item_path GET /api/orders/:order_id/line_items/:id(.:format) spree/api/line_items#show {:format=>"json"} | |
PATCH /api/orders/:order_id/line_items/:id(.:format) spree/api/line_items#update {:format=>"json"} | |
PUT /api/orders/:order_id/line_items/:id(.:format) spree/api/line_items#update {:format=>"json"} | |
DELETE /api/orders/:order_id/line_items/:id(.:format) spree/api/line_items#destroy {:format=>"json"} | |
authorize_api_order_payment_path PUT /api/orders/:order_id/payments/:id/authorize(.:format) spree/api/payments#authorize {:format=>"json"} | |
capture_api_order_payment_path PUT /api/orders/:order_id/payments/:id/capture(.:format) spree/api/payments#capture {:format=>"json"} | |
purchase_api_order_payment_path PUT /api/orders/:order_id/payments/:id/purchase(.:format) spree/api/payments#purchase {:format=>"json"} | |
void_api_order_payment_path PUT /api/orders/:order_id/payments/:id/void(.:format) spree/api/payments#void {:format=>"json"} | |
credit_api_order_payment_path PUT /api/orders/:order_id/payments/:id/credit(.:format) spree/api/payments#credit {:format=>"json"} | |
api_order_payments_path GET /api/orders/:order_id/payments(.:format) spree/api/payments#index {:format=>"json"} | |
POST /api/orders/:order_id/payments(.:format) spree/api/payments#create {:format=>"json"} | |
new_api_order_payment_path GET /api/orders/:order_id/payments/new(.:format) spree/api/payments#new {:format=>"json"} | |
edit_api_order_payment_path GET /api/orders/:order_id/payments/:id/edit(.:format) spree/api/payments#edit {:format=>"json"} | |
api_order_payment_path GET /api/orders/:order_id/payments/:id(.:format) spree/api/payments#show {:format=>"json"} | |
PATCH /api/orders/:order_id/payments/:id(.:format) spree/api/payments#update {:format=>"json"} | |
PUT /api/orders/:order_id/payments/:id(.:format) spree/api/payments#update {:format=>"json"} | |
DELETE /api/orders/:order_id/payments/:id(.:format) spree/api/payments#destroy {:format=>"json"} | |
api_order_address_path GET /api/orders/:order_id/addresses/:id(.:format) spree/api/addresses#show {:format=>"json"} | |
PATCH /api/orders/:order_id/addresses/:id(.:format) spree/api/addresses#update {:format=>"json"} | |
PUT /api/orders/:order_id/addresses/:id(.:format) spree/api/addresses#update {:format=>"json"} | |
add_api_order_return_authorization_path PUT /api/orders/:order_id/return_authorizations/:id/add(.:format) spree/api/return_authorizations#add {:format=>"json"} | |
cancel_api_order_return_authorization_path PUT /api/orders/:order_id/return_authorizations/:id/cancel(.:format) spree/api/return_authorizations#cancel {:format=>"json"} | |
receive_api_order_return_authorization_path PUT /api/orders/:order_id/return_authorizations/:id/receive(.:format) spree/api/return_authorizations#receive {:format=>"json"} | |
api_order_return_authorizations_path GET /api/orders/:order_id/return_authorizations(.:format) spree/api/return_authorizations#index {:format=>"json"} | |
POST /api/orders/:order_id/return_authorizations(.:format) spree/api/return_authorizations#create {:format=>"json"} | |
new_api_order_return_authorization_path GET /api/orders/:order_id/return_authorizations/new(.:format) spree/api/return_authorizations#new {:format=>"json"} | |
edit_api_order_return_authorization_path GET /api/orders/:order_id/return_authorizations/:id/edit(.:format) spree/api/return_authorizations#edit {:format=>"json"} | |
api_order_return_authorization_path GET /api/orders/:order_id/return_authorizations/:id(.:format) spree/api/return_authorizations#show {:format=>"json"} | |
PATCH /api/orders/:order_id/return_authorizations/:id(.:format) spree/api/return_authorizations#update {:format=>"json"} | |
PUT /api/orders/:order_id/return_authorizations/:id(.:format) spree/api/return_authorizations#update {:format=>"json"} | |
DELETE /api/orders/:order_id/return_authorizations/:id(.:format) spree/api/return_authorizations#destroy {:format=>"json"} | |
api_orders_path GET /api/orders(.:format) spree/api/orders#index {:format=>"json"} | |
POST /api/orders(.:format) spree/api/orders#create {:format=>"json"} | |
new_api_order_path GET /api/orders/new(.:format) spree/api/orders#new {:format=>"json"} | |
edit_api_order_path GET /api/orders/:id/edit(.:format) spree/api/orders#edit {:format=>"json"} | |
api_order_path GET /api/orders/:id(.:format) spree/api/orders#show {:format=>"json"} | |
PATCH /api/orders/:id(.:format) spree/api/orders#update {:format=>"json"} | |
PUT /api/orders/:id(.:format) spree/api/orders#update {:format=>"json"} | |
DELETE /api/orders/:id(.:format) spree/api/orders#destroy {:format=>"json"} | |
api_zones_path GET /api/zones(.:format) spree/api/zones#index {:format=>"json"} | |
POST /api/zones(.:format) spree/api/zones#create {:format=>"json"} | |
new_api_zone_path GET /api/zones/new(.:format) spree/api/zones#new {:format=>"json"} | |
edit_api_zone_path GET /api/zones/:id/edit(.:format) spree/api/zones#edit {:format=>"json"} | |
api_zone_path GET /api/zones/:id(.:format) spree/api/zones#show {:format=>"json"} | |
PATCH /api/zones/:id(.:format) spree/api/zones#update {:format=>"json"} | |
PUT /api/zones/:id(.:format) spree/api/zones#update {:format=>"json"} | |
DELETE /api/zones/:id(.:format) spree/api/zones#destroy {:format=>"json"} | |
api_country_states_path GET /api/countries/:country_id/states(.:format) spree/api/states#index {:format=>"json"} | |
api_country_state_path GET /api/countries/:country_id/states/:id(.:format) spree/api/states#show {:format=>"json"} | |
api_countries_path GET /api/countries(.:format) spree/api/countries#index {:format=>"json"} | |
api_country_path GET /api/countries/:id(.:format) spree/api/countries#show {:format=>"json"} | |
transfer_to_location_api_shipments_path POST /api/shipments/transfer_to_location(.:format) spree/api/shipments#transfer_to_location {:format=>"json"} | |
transfer_to_shipment_api_shipments_path POST /api/shipments/transfer_to_shipment(.:format) spree/api/shipments#transfer_to_shipment {:format=>"json"} | |
mine_api_shipments_path GET /api/shipments/mine(.:format) spree/api/shipments#mine {:format=>"json"} | |
ready_api_shipment_path PUT /api/shipments/:id/ready(.:format) spree/api/shipments#ready {:format=>"json"} | |
ship_api_shipment_path PUT /api/shipments/:id/ship(.:format) spree/api/shipments#ship {:format=>"json"} | |
add_api_shipment_path PUT /api/shipments/:id/add(.:format) spree/api/shipments#add {:format=>"json"} | |
remove_api_shipment_path PUT /api/shipments/:id/remove(.:format) spree/api/shipments#remove {:format=>"json"} | |
api_shipments_path POST /api/shipments(.:format) spree/api/shipments#create {:format=>"json"} | |
api_shipment_path PATCH /api/shipments/:id(.:format) spree/api/shipments#update {:format=>"json"} | |
PUT /api/shipments/:id(.:format) spree/api/shipments#update {:format=>"json"} | |
api_states_path GET /api/states(.:format) spree/api/states#index {:format=>"json"} | |
api_state_path GET /api/states/:id(.:format) spree/api/states#show {:format=>"json"} | |
jstree_api_taxonomy_path GET /api/taxonomies/:id/jstree(.:format) spree/api/taxonomies#jstree {:format=>"json"} | |
jstree_api_taxonomy_taxon_path GET /api/taxonomies/:taxonomy_id/taxons/:id/jstree(.:format) spree/api/taxons#jstree {:format=>"json"} | |
api_taxonomy_taxons_path GET /api/taxonomies/:taxonomy_id/taxons(.:format) spree/api/taxons#index {:format=>"json"} | |
POST /api/taxonomies/:taxonomy_id/taxons(.:format) spree/api/taxons#create {:format=>"json"} | |
new_api_taxonomy_taxon_path GET /api/taxonomies/:taxonomy_id/taxons/new(.:format) spree/api/taxons#new {:format=>"json"} | |
edit_api_taxonomy_taxon_path GET /api/taxonomies/:taxonomy_id/taxons/:id/edit(.:format) spree/api/taxons#edit {:format=>"json"} | |
api_taxonomy_taxon_path GET /api/taxonomies/:taxonomy_id/taxons/:id(.:format) spree/api/taxons#show {:format=>"json"} | |
PATCH /api/taxonomies/:taxonomy_id/taxons/:id(.:format) spree/api/taxons#update {:format=>"json"} | |
PUT /api/taxonomies/:taxonomy_id/taxons/:id(.:format) spree/api/taxons#update {:format=>"json"} | |
DELETE /api/taxonomies/:taxonomy_id/taxons/:id(.:format) spree/api/taxons#destroy {:format=>"json"} | |
api_taxonomies_path GET /api/taxonomies(.:format) spree/api/taxonomies#index {:format=>"json"} | |
POST /api/taxonomies(.:format) spree/api/taxonomies#create {:format=>"json"} | |
new_api_taxonomy_path GET /api/taxonomies/new(.:format) spree/api/taxonomies#new {:format=>"json"} | |
edit_api_taxonomy_path GET /api/taxonomies/:id/edit(.:format) spree/api/taxonomies#edit {:format=>"json"} | |
api_taxonomy_path GET /api/taxonomies/:id(.:format) spree/api/taxonomies#show {:format=>"json"} | |
PATCH /api/taxonomies/:id(.:format) spree/api/taxonomies#update {:format=>"json"} | |
PUT /api/taxonomies/:id(.:format) spree/api/taxonomies#update {:format=>"json"} | |
DELETE /api/taxonomies/:id(.:format) spree/api/taxonomies#destroy {:format=>"json"} | |
api_taxons_path GET /api/taxons(.:format) spree/api/taxons#index {:format=>"json"} | |
api_inventory_unit_path GET /api/inventory_units/:id(.:format) spree/api/inventory_units#show {:format=>"json"} | |
PATCH /api/inventory_units/:id(.:format) spree/api/inventory_units#update {:format=>"json"} | |
PUT /api/inventory_units/:id(.:format) spree/api/inventory_units#update {:format=>"json"} | |
api_user_credit_cards_path GET /api/users/:user_id/credit_cards(.:format) spree/api/credit_cards#index {:format=>"json"} | |
api_users_path GET /api/users(.:format) spree/api/users#index {:format=>"json"} | |
POST /api/users(.:format) spree/api/users#create {:format=>"json"} | |
new_api_user_path GET /api/users/new(.:format) spree/api/users#new {:format=>"json"} | |
edit_api_user_path GET /api/users/:id/edit(.:format) spree/api/users#edit {:format=>"json"} | |
api_user_path GET /api/users/:id(.:format) spree/api/users#show {:format=>"json"} | |
PATCH /api/users/:id(.:format) spree/api/users#update {:format=>"json"} | |
PUT /api/users/:id(.:format) spree/api/users#update {:format=>"json"} | |
DELETE /api/users/:id(.:format) spree/api/users#destroy {:format=>"json"} | |
api_properties_path GET /api/properties(.:format) spree/api/properties#index {:format=>"json"} | |
POST /api/properties(.:format) spree/api/properties#create {:format=>"json"} | |
new_api_property_path GET /api/properties/new(.:format) spree/api/properties#new {:format=>"json"} | |
edit_api_property_path GET /api/properties/:id/edit(.:format) spree/api/properties#edit {:format=>"json"} | |
api_property_path GET /api/properties/:id(.:format) spree/api/properties#show {:format=>"json"} | |
PATCH /api/properties/:id(.:format) spree/api/properties#update {:format=>"json"} | |
PUT /api/properties/:id(.:format) spree/api/properties#update {:format=>"json"} | |
DELETE /api/properties/:id(.:format) spree/api/properties#destroy {:format=>"json"} | |
api_stock_location_stock_movements_path GET /api/stock_locations/:stock_location_id/stock_movements(.:format) spree/api/stock_movements#index {:format=>"json"} | |
POST /api/stock_locations/:stock_location_id/stock_movements(.:format) spree/api/stock_movements#create {:format=>"json"} | |
new_api_stock_location_stock_movement_path GET /api/stock_locations/:stock_location_id/stock_movements/new(.:format) spree/api/stock_movements#new {:format=>"json"} | |
edit_api_stock_location_stock_movement_path GET /api/stock_locations/:stock_location_id/stock_movements/:id/edit(.:format) spree/api/stock_movements#edit {:format=>"json"} | |
api_stock_location_stock_movement_path GET /api/stock_locations/:stock_location_id/stock_movements/:id(.:format) spree/api/stock_movements#show {:format=>"json"} | |
PATCH /api/stock_locations/:stock_location_id/stock_movements/:id(.:format) spree/api/stock_movements#update {:format=>"json"} | |
PUT /api/stock_locations/:stock_location_id/stock_movements/:id(.:format) spree/api/stock_movements#update {:format=>"json"} | |
DELETE /api/stock_locations/:stock_location_id/stock_movements/:id(.:format) spree/api/stock_movements#destroy {:format=>"json"} | |
api_stock_location_stock_items_path GET /api/stock_locations/:stock_location_id/stock_items(.:format) spree/api/stock_items#index {:format=>"json"} | |
POST /api/stock_locations/:stock_location_id/stock_items(.:format) spree/api/stock_items#create {:format=>"json"} | |
new_api_stock_location_stock_item_path GET /api/stock_locations/:stock_location_id/stock_items/new(.:format) spree/api/stock_items#new {:format=>"json"} | |
edit_api_stock_location_stock_item_path GET /api/stock_locations/:stock_location_id/stock_items/:id/edit(.:format) spree/api/stock_items#edit {:format=>"json"} | |
api_stock_location_stock_item_path GET /api/stock_locations/:stock_location_id/stock_items/:id(.:format) spree/api/stock_items#show {:format=>"json"} | |
PATCH /api/stock_locations/:stock_location_id/stock_items/:id(.:format) spree/api/stock_items#update {:format=>"json"} | |
PUT /api/stock_locations/:stock_location_id/stock_items/:id(.:format) spree/api/stock_items#update {:format=>"json"} | |
DELETE /api/stock_locations/:stock_location_id/stock_items/:id(.:format) spree/api/stock_items#destroy {:format=>"json"} | |
api_stock_locations_path GET /api/stock_locations(.:format) spree/api/stock_locations#index {:format=>"json"} | |
POST /api/stock_locations(.:format) spree/api/stock_locations#create {:format=>"json"} | |
new_api_stock_location_path GET /api/stock_locations/new(.:format) spree/api/stock_locations#new {:format=>"json"} | |
edit_api_stock_location_path GET /api/stock_locations/:id/edit(.:format) spree/api/stock_locations#edit {:format=>"json"} | |
api_stock_location_path GET /api/stock_locations/:id(.:format) spree/api/stock_locations#show {:format=>"json"} | |
PATCH /api/stock_locations/:id(.:format) spree/api/stock_locations#update {:format=>"json"} | |
PUT /api/stock_locations/:id(.:format) spree/api/stock_locations#update {:format=>"json"} | |
DELETE /api/stock_locations/:id(.:format) spree/api/stock_locations#destroy {:format=>"json"} | |
api_stock_items_path GET /api/stock_items(.:format) spree/api/stock_items#index {:format=>"json"} | |
api_stock_item_path PATCH /api/stock_items/:id(.:format) spree/api/stock_items#update {:format=>"json"} | |
PUT /api/stock_items/:id(.:format) spree/api/stock_items#update {:format=>"json"} | |
DELETE /api/stock_items/:id(.:format) spree/api/stock_items#destroy {:format=>"json"} | |
api_stores_path GET /api/stores(.:format) spree/api/stores#index {:format=>"json"} | |
POST /api/stores(.:format) spree/api/stores#create {:format=>"json"} | |
new_api_store_path GET /api/stores/new(.:format) spree/api/stores#new {:format=>"json"} | |
edit_api_store_path GET /api/stores/:id/edit(.:format) spree/api/stores#edit {:format=>"json"} | |
api_store_path GET /api/stores/:id(.:format) spree/api/stores#show {:format=>"json"} | |
PATCH /api/stores/:id(.:format) spree/api/stores#update {:format=>"json"} | |
PUT /api/stores/:id(.:format) spree/api/stores#update {:format=>"json"} | |
DELETE /api/stores/:id(.:format) spree/api/stores#destroy {:format=>"json"} | |
api_classifications_path PUT /api/classifications(.:format) spree/api/classifications#update {:format=>"json"} | |
api_taxon_products_path GET /api/taxons/products(.:format) spree/api/taxons#products {:format=>"json"} | |
Request |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Rails.application.routes.draw do | |
# This line mounts Spree's routes at the root of your application. | |
# This means, any requests to URLs such as /products, will go to Spree::ProductsController. | |
# If you would like to change where this engine is mounted, simply change the :at option to something different. | |
# | |
# We ask that you don't use the :as option here, as Spree relies on it being the default of "spree" | |
mount Spree::Core::Engine, :at => '/shop' | |
# The priority is based upon order of creation: first created -> highest priority. | |
# See how all your routes lay out with "rake routes". | |
# You can have the root of your site routed with "root" | |
root 'static_pages#home' | |
get 'contact' => 'static_pages#contact' | |
get 'about' => 'static_pages#about' | |
get 'partners' => 'static_pages#partners' | |
get 'inkinddonations' => 'static_pages#in-kind-donations' | |
get 'sponsors' => 'static_pages#sponsors' | |
get 'supporters' => 'static_pages#supporters' | |
get 'shop' => 'static_pages#shop' | |
get 'events' => 'static_pages#events' | |
get 'specialthanks' => 'static_pages#special-thanks' | |
get 'why' => 'static_pages#why' | |
get 'getinvolved' => 'static_pages#getinvolved' | |
get 'volunteer' => 'static_pages#volunteer' | |
get 'donate' => 'static_pages#donate' | |
get 'workshares' => 'static_pages#workshares' | |
get 'corporatematch' => 'static_pages#corporatematch' | |
get 'waystogive' => 'static_pages#waystogive' | |
get 'wishlist' => 'static_pages#wishlist' | |
get 'secure' => 'static_pages#secure' | |
get 'privacy' => 'static_pages#privacy' | |
get 'rules' => 'static_pages#rules' | |
get 'faq' => 'static_pages#faq' | |
get 'profile' => 'static_pages#profile' | |
get 'seeusers' => 'static_pages#seeusers' | |
# Example of regular route: | |
# get 'products/:id' => 'catalog#view' | |
# Example of named route that can be invoked with purchase_url(id: product.id) | |
# get 'products/:id/purchase' => 'catalog#purchase', as: :purchase | |
# Example resource route (maps HTTP verbs to controller actions automatically): | |
# resources :products | |
# Example resource route with options: | |
# resources :products do | |
# member do | |
# get 'short' | |
# post 'toggle' | |
# end | |
# | |
# collection do | |
# get 'sold' | |
# end | |
# end | |
# Example resource route with sub-resources: | |
# resources :products do | |
# resources :comments, :sales | |
# resource :seller | |
# end | |
# Example resource route with more complex sub-resources: | |
# resources :products do | |
# resources :comments | |
# resources :sales do | |
# get 'recent', on: :collection | |
# end | |
# end | |
# Example resource route with concerns: | |
# concern :toggleable do | |
# post 'toggle' | |
# end | |
# resources :posts, concerns: :toggleable | |
# resources :photos, concerns: :toggleable | |
# Example resource route within a namespace: | |
# namespace :admin do | |
# # Directs /admin/products/* to Admin::ProductsController | |
# # (app/controllers/admin/products_controller.rb) | |
# resources :products | |
# end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment