Sha256: 38f19f24192737ed9d8571dda8a3722ff6db83fa8a594da976e23829c85e1852
Contents?: true
Size: 738 Bytes
Versions: 7
Compression:
Stored size: 738 Bytes
Contents
# frozen_string_literal: true GoodJob::Engine.routes.draw do root to: 'executions#index' resources :cron_entries, only: %i[index show] do member do post :enqueue end end resources :jobs, only: %i[index show] do member do put :discard put :reschedule put :retry end end resources :executions, only: %i[destroy] scope controller: :assets do constraints(format: :css) do get :bootstrap, action: :bootstrap_css get :style, action: :style_css end constraints(format: :js) do get :bootstrap, action: :bootstrap_js get :rails_ujs, action: :rails_ujs_js get :chartjs, action: :chartjs_js get :scripts, action: :scripts_js end end end
Version data entries
7 entries across 7 versions & 1 rubygems