routes.rb 241 B

123456789
  1. Blazer::Engine.routes.draw do
  2. resources :queries, except: [:index] do
  3. post :run, on: :collection # err on the side of caution
  4. end
  5. resources :checks, except: [:show] do
  6. get :run, on: :member
  7. end
  8. root to: "queries#index"
  9. end