Sha256: d87dfd16222a1d464929d5ea7a96c299523786253a5cf7f29ed0fa41623669c7
Contents?: true
Size: 1021 Bytes
Versions: 5
Compression:
Stored size: 1021 Bytes
Contents
require 'sidekiq/web' Rails.application.routes.draw do mount Riiif::Engine => 'images', as: :riiif if Hyrax.config.iiif_image_server? mount BrowseEverything::Engine => '/browse' mount Blacklight::Engine => '/' concern :searchable, Blacklight::Routes::Searchable.new resource :catalog, only: [:index], as: 'catalog', path: '/catalog', controller: 'catalog' do concerns :searchable end devise_for :users mount Sidekiq::Web => '/sidekiq' mount Qa::Engine => '/authorities' mount Hyrax::Engine, at: '/' resources :welcome, only: 'index' root 'hyrax/homepage#index' curation_concerns_basic_routes concern :exportable, Blacklight::Routes::Exportable.new resources :solr_documents, only: [:show], path: '/catalog', controller: 'catalog' do concerns :exportable end resources :bookmarks do concerns :exportable collection do delete 'clear' end end # For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html end
Version data entries
5 entries across 5 versions & 1 rubygems