mirror of
https://github.com/Neetpone/foalfetch.git
synced 2025-02-08 18:06:43 +01:00
25 lines
780 B
Ruby
25 lines
780 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
|
|
scope module: :stories do
|
|
resource :download, only: :show
|
|
end
|
|
end
|
|
|
|
# Routes for compat with FiMFetch
|
|
get '/story/:id/:ignored0' => 'stories#show'
|
|
get '/story/:story_id/:ignored0/chapter/:id/:ignored1' => 'chapters#show'
|
|
|
|
# Different route name again to match FiMFetch
|
|
resources :blogs, only: [:index], path: :news
|
|
end
|