Sha256: e589f8f30d5516ccc8db135ddb5509c57f228913f4dbfef14eea16dcb6d7268b
Contents?: true
Size: 1.16 KB
Versions: 16
Compression:
Stored size: 1.16 KB
Contents
Katello::Engine.routes.draw do scope :katello, :path => '/katello' do match ':kt_path/auto_complete_search', :action => :auto_complete_search, :controller => :auto_complete_search, :via => :get resources :sync_management, :only => [:destroy] do collection do get :index get :sync_status post :sync end end if Katello.with_remote_execution? match '/remote_execution' => 'remote_execution#create', :via => [:post] end end get '/katello/providers/redhat_provider', to: redirect('/redhat_repositories') match '/redhat_repositories' => 'react#index', :via => [:get] match '/subscriptions' => 'react#index', :via => [:get] match '/subscriptions/*page' => 'react#index', :via => [:get] match '/module_streams' => 'react#index', :via => [:get] match '/module_streams/*page' => 'react#index', :via => [:get] match '/ansible_collections' => 'react#index', :via => [:get] match '/ansible_collections/*page' => 'react#index', :via => [:get] match '/xui' => 'react#index', :via => [:get] match '/xui/*page' => 'react#index', :via => [:get] match '/organization_select' => 'react#index', :via => [:get] end
Version data entries
16 entries across 16 versions & 1 rubygems