Sha256: 6b1317ab25a05ff1af1ba52053046fa5f00134eb663aca3bebe25dd235d3290b

Contents?: true

Size: 1.09 KB

Versions: 29

Compression:

Stored size: 1.09 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 '/module_streams' => '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

29 entries across 29 versions & 1 rubygems

Version Path
katello-3.13.4 config/routes.rb
katello-3.13.3 config/routes.rb
katello-3.13.2 config/routes.rb
katello-3.13.1 config/routes.rb
katello-3.13.0 config/routes.rb
katello-3.13.0.rc2.1 config/routes.rb
katello-3.13.0.rc2 config/routes.rb
katello-3.12.3 config/routes.rb
katello-3.12.2 config/routes.rb
katello-3.13.0.rc1 config/routes.rb
katello-3.12.1 config/routes.rb
katello-3.11.2 config/routes.rb
katello-3.10.2 config/routes.rb
katello-3.12.0 config/routes.rb
katello-3.12.0.rc2 config/routes.rb
katello-3.10.1.1 config/routes.rb
katello-3.12.0.rc1 config/routes.rb
katello-3.10.1 config/routes.rb
katello-3.11.1 config/routes.rb
katello-3.11.0 config/routes.rb