Sha256: 4b5f9143fdfcb6ed52bf08ca164301fcb53b4efb0c3db872b4e88dbde996f3a2
Contents?: true
Size: 1.13 KB
Versions: 1
Compression:
Stored size: 1.13 KB
Contents
Foreman::Application.routes.draw do namespace :foreman_tasks do resources :recurring_logics, :only => [:index, :show] do member do post :cancel put :enable put :disable end end resources :tasks, :only => [:index, :show] do collection do get 'auto_complete_search' end member do get :sub_tasks post :abort post :cancel post :resume post :unlock post :force_unlock post :cancel_step end end match '/ex_tasks' => 'react#index', :via => [:get] match '/ex_tasks/:id' => 'react#index', :via => [:get] namespace :api do resources :recurring_logics, :only => [:index, :show, :update] do member do post :cancel end end resources :tasks, :only => [:show, :index] do collection do post :bulk_search post :bulk_resume get :summary post :callback end end end if ForemanTasks.dynflow.required? require 'dynflow/web' mount ForemanTasks.dynflow.web_console => '/dynflow' end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
foreman-tasks-0.15.1 | config/routes.rb |