Sha256: 83b75dd41226324dea0fb7e4cf3c291f0643d203b0c29a431b6656ae78c8474d

Contents?: true

Size: 620 Bytes

Versions: 36

Compression:

Stored size: 620 Bytes

Contents

ShopifyApp::Engine.routes.draw do
  controller :sessions do
    get 'login' => :new, :as => :login
    post 'login' => :create, :as => :authenticate
    get 'enable_cookies' => :enable_cookies, :as => :enable_cookies
    get 'top_level_interaction' =>
      :top_level_interaction,
        :as => :top_level_interaction
    get 'granted_storage_access' =>
      :granted_storage_access,
        :as => :granted_storage_access
    get 'logout' => :destroy, :as => :logout
  end

  controller :callback do
    get 'auth/shopify/callback' => :callback
  end

  namespace :webhooks do
    post ':type' => :receive
  end
end

Version data entries

36 entries across 36 versions & 1 rubygems

Version Path
shopify_app-13.0.0 config/routes.rb
shopify_app-12.0.7 config/routes.rb
shopify_app-12.0.6 config/routes.rb
shopify_app-12.0.5 config/routes.rb
shopify_app-12.0.4 config/routes.rb
shopify_app-12.0.3 config/routes.rb
shopify_app-12.0.2 config/routes.rb
shopify_app-12.0.1 config/routes.rb
shopify_app-12.0.0 config/routes.rb
shopify_app-11.7.1 config/routes.rb
shopify_app-11.7.0 config/routes.rb
shopify_app-11.6.0 config/routes.rb
shopify_app-11.5.1 config/routes.rb
shopify_app-11.5.0 config/routes.rb
shopify_app-11.4.0 config/routes.rb
shopify_app-11.3.2 config/routes.rb
shopify_app-11.3.1 config/routes.rb
shopify_app-11.3.0 config/routes.rb
shopify_app-11.2.0 config/routes.rb
shopify_app-11.1.0 config/routes.rb