foalfetch/config/routes.rb
2024-04-06 07:00:46 -04:00

18 lines
544 B
Ruby

# frozen_string_literal: true
Rails.application.routes.draw do
root 'search#index'
post '/search' => 'search#search'
get '/search' => 'search#search'
get '/about' => 'static_pages#about'
get '/images' => 'images#show'
resources :authors, only: [:show]
# using singular-named routes to match FiMFetch/FiMFiction.
resources :stories, only: [:show], path: :story do
resources :chapters, only: [:show], path: :chapter
end
# Different route name again to match FiMFetch
resources :blogs, only: [:index], path: :news
end