Sha256: 4e90d423e6cadc6b6f2866221c47173599fb2ca1975768d161dfcc40098430d0

Contents?: true

Size: 1016 Bytes

Versions: 8

Compression:

Stored size: 1016 Bytes

Contents

require 'resque/server'

Krikri::Engine.routes.draw do
  # TODO: remove unnecessary :harvest_sources and :institutions routes once we
  # have established what we do and don't need
  resources :validation_reports, only: [:show]

  # Blacklight::CatalogController subclasses seem to have an issue where their
  # facet-related routes don't get automatically populated, leading to routing
  # errors when facet limits are enabled and the view attempts to render the
  # "more" links. This fix was suggested by Trey Terrell, demonstrated here:
  # https://github.com/OregonDigital/oregondigital/blob/d1653e41/config/routes.rb#L52-L56
  resources :records, only: [:index, :show] do
    collection do
      get "facet/:id", :to => "records#facet"
    end
  end

  resources :reports, only: [:index]
  resources :qa_reports, only: [:index, :show]
  resources :institutions do
    resources :harvest_sources, shallow: true
  end

  resources :providers, only: [:index, :show]

  mount Resque::Server.new, at: '/resque'
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
krikri-0.7.6 config/routes.rb
krikri-0.7.5 config/routes.rb
krikri-0.7.4 config/routes.rb
krikri-0.7.3 config/routes.rb
krikri-0.7.2 config/routes.rb
krikri-0.7.1 config/routes.rb
krikri-0.7.0 config/routes.rb
krikri-0.6.0 config/routes.rb