Sha256: 997137378610182638ec3383938d46e7dd9e99b68e088a72eec7d2bc1e394c64
Contents?: true
Size: 605 Bytes
Versions: 1
Compression:
Stored size: 605 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 "merge_groups", on: :collection post "clear", on: :collection end resources :stored_filters, only: [:index, :new, :create] do post "find", on: :collection end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
refine-rails-2.11.5 | config/routes.rb |