Sha256: 6dc0d6919f2b6565ca083fc18b9a0b4a9058214190c625a32ea758c2fe2fdc92
Contents?: true
Size: 554 Bytes
Versions: 5
Compression:
Stored size: 554 Bytes
Contents
# frozen_string_literal: true GoodJob::Engine.routes.draw do root to: 'executions#index' resources :cron_schedules, only: %i[index] resources :jobs, only: %i[index show] resources :executions, only: %i[destroy] scope controller: :assets do constraints(format: :css) do get :bootstrap, action: :bootstrap_css get :chartist, action: :chartist_css get :style, action: :style_css end constraints(format: :js) do get :bootstrap, action: :bootstrap_js get :chartist, action: :chartist_js end end end
Version data entries
5 entries across 5 versions & 1 rubygems