Sha256: 90348f96acdf421a09d1f7bf6f4d8b731d52a1c9f4521a633d6f5cde448b0747

Contents?: true

Size: 384 Bytes

Versions: 2

Compression:

Stored size: 384 Bytes

Contents

Sidekiq::Monitor::Engine.routes.draw do
  get '/', to: 'jobs#index', :as => 'sidekiq_monitor'
  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/retry/:id', to: 'jobs#retry'
    get '/queues/:queue', to: 'queues#show'
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
sidekiq_monitor-0.0.6 config/routes.rb
sidekiq_monitor-0.0.5 config/routes.rb