Sha256: 776f46fff5d414015efb2432f24a514bbd274e74fa737dd947896b20ad9f481c

Contents?: true

Size: 531 Bytes

Versions: 32

Compression:

Stored size: 531 Bytes

Contents

Blazer::Engine.routes.draw do
  resources :queries do
    post :run, on: :collection # err on the side of caution
    post :cancel, on: :collection
    post :refresh, on: :member
    get :tables, on: :collection
    get :schema, on: :collection
    get :docs, on: :collection
  end

  resources :checks, except: [:show] do
    get :run, on: :member
  end

  resources :dashboards, except: [:index] do
    post :refresh, on: :member
  end

  if Blazer.uploads?
    resources :uploads do
    end
  end

  root to: "queries#home"
end

Version data entries

32 entries across 32 versions & 3 rubygems

Version Path
blazer-3.1.0 config/routes.rb
blazer-3.0.4 config/routes.rb
blazer_xlsx-3.0.8 config/routes.rb
blazer_xlsx-3.0.7 config/routes.rb
blazer_xlsx-3.0.6 config/routes.rb
blazer_xlsx-3.0.5 config/routes.rb
blazer-3.0.3 config/routes.rb
blazer-3.0.2 config/routes.rb
finery-3.0.3 config/routes.rb
finery-3.0.2 config/routes.rb
blazer-3.0.1 config/routes.rb
finery-3.0.1 config/routes.rb
finery-3.0.0 config/routes.rb
blazer-3.0.0 config/routes.rb
blazer-2.6.5 config/routes.rb
blazer-2.6.4 config/routes.rb
blazer-2.6.3 config/routes.rb
blazer-2.6.2 config/routes.rb
blazer-2.6.1 config/routes.rb
blazer-2.6.0 config/routes.rb