Sha256: 010cdb6cc5cf79c29359acc21acd358bc21bc31e4696c3e035dff9d966bc37a2

Contents?: true

Size: 503 Bytes

Versions: 10

Compression:

Stored size: 503 Bytes

Contents

Sidekiq::Monitor::Engine.routes.draw do
  get '/', to: 'jobs#index', :as => 'sidekiq_monitor'
  get '/graph', to: 'jobs#graph'
  get '/queues', to: 'queues#index'
  
  namespace 'api' do
    get '/jobs', to: 'jobs#index'
    get '/jobs/clean', to: 'jobs#clean'
    get '/jobs/custom_views/:id', to: 'jobs#custom_views'
    get '/jobs/graph', to: 'jobs#graph'
    get '/jobs/retry/:id', to: 'jobs#retry'
    get '/jobs/statuses', to: 'jobs#statuses'
    get '/queues/:queue', to: 'queues#show'
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
sidekiq_monitor-0.1.7 config/routes.rb
sidekiq_monitor-0.1.6 config/routes.rb
sidekiq_monitor-0.1.5 config/routes.rb
sidekiq_monitor-0.1.4 config/routes.rb
sidekiq_monitor-0.1.3 config/routes.rb
sidekiq_monitor-0.1.2 config/routes.rb
sidekiq_monitor-0.1.1 config/routes.rb
sidekiq_monitor-0.0.9 config/routes.rb
sidekiq_monitor-0.0.8 config/routes.rb
sidekiq_monitor-0.0.7 config/routes.rb