Sha256: cd37a8a30114bcc3fe46881408849a31f4034d75130bdd2a89c93a5072b1f680

Contents?: true

Size: 560 Bytes

Versions: 4

Compression:

Stored size: 560 Bytes

Contents

Rails.application.routes.draw do
  namespace :refine do
    resource :blueprint, only: [:show, :new, :create] do
      get "stored_filters", on: :collection
      get "validate", on: :collection
    end
    resources :stored_filters, only: [:index, :new, :create] do
      post "find", on: :collection
    end
    namespace :inline do
      resources :criteria, except: [:show] do
        post "clear", on: :collection
      end
      resources :stored_filters, only: [:index, :new, :create] do
        post "find", on: :collection
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
refine-rails-2.11.4 config/routes.rb
refine-rails-2.11.3 config/routes.rb
refine-rails-2.11.2 config/routes.rb
refine-rails-2.11.1 config/routes.rb