Sha256: 0c8e10cbb3498a1756d82f6ec7a78726e24148ca05364b11bcddbc3611b059d8

Contents?: true

Size: 776 Bytes

Versions: 24

Compression:

Stored size: 776 Bytes

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

    resources :products, :only => [] do
      member do
        get :available_repositories
        put :toggle_repository
      end
    end

    resources :providers, :only => [] do
      collection do
        get :redhat_provider
        get :redhat_provider_tab
      end
    end

    if Katello.with_remote_execution?
      match '/remote_execution' => 'remote_execution#create', :via => [:post]
    end
  end
end

Version data entries

24 entries across 24 versions & 1 rubygems

Version Path
katello-3.5.2 config/routes.rb
katello-3.5.1.1 config/routes.rb
katello-3.5.1 config/routes.rb
katello-3.5.0.1 config/routes.rb
katello-3.5.0 config/routes.rb
katello-3.5.0.rc2 config/routes.rb
katello-3.5.0.rc1 config/routes.rb
katello-3.4.5 config/routes.rb
katello-3.4.4 config/routes.rb
katello-3.4.2 config/routes.rb
katello-3.4.1 config/routes.rb
katello-3.4.0.2 config/routes.rb
katello-3.4.0.1 config/routes.rb
katello-3.3.2 config/routes.rb
katello-3.4.0 config/routes.rb
katello-3.4.0.rc2 config/routes.rb
katello-3.4.0.rc1 config/routes.rb
katello-3.3.1.1 config/routes.rb
katello-3.3.1 config/routes.rb
katello-3.3.0.1 config/routes.rb