Rails.application.routes.draw do resource :session resources :passwords, param: :token # Define your application routes per the DSL in https://guides.rubyonrails.org/routing.html root "welcome#index" # Reveal health status on /up that returns 200 if the app boots with no exceptions, otherwise 500. # Can be used by load balancers and uptime monitors to verify that the app is live. get "up" => "rails/health#show", as: :rails_health_check get "/welcome/homepage", to: "welcome#homepage" #shrines shrines shrines get "/shrines/mordenambition", to: "shrines#mordenambition" get "/shrines/mordenlethal", to: "shrines#mordenlethal" get "/shrines/mordenidol", to: "shrines#mordenidol" get "/shrines/mordendelirious", to: "shrines#mordendelirious" get "/shrines/mordenrelease", to: "shrines#mordenrelease" # spiral eye get "/shrines/spiraleye", to: "shrines#spiraleye" get "/shrines/spiraleyefanworks", to: "shrines#spiraleyefanworks" get "/shrines/spiraleyeggallery", to: "shrines#spiraleyeggallery" get "/shrines/spiraleyelinks", to: "shrines#spiraleyelinks" get "/shrines/spiraleyeabout", to: "shrines#spiraleyeabout" get "/shrines/spiraleyeabtsite", to: "shrines#spiraleyeabtsite" #spirit get "/shrines/spirit", to: "shrines#spirit" get "/shrines/spirittimeline", to: "shrines#spirittimeline" get "/shrines/spirithc", to: "shrines#spirithc" get "/shrines/spiritquiz", to: "shrines#spiritquiz" get "/shrines/spiritsc", to: "shrines#spiritsc" # Render dynamic PWA files from app/views/pwa/* (remember to link manifest in application.html.erb) # get "manifest" => "rails/pwa#manifest", as: :pwa_manifest # get "service-worker" => "rails/pwa#service_worker", as: :pwa_service_worker get "/fun/b5sorter", to: "fun#b5sorter" resources :miniblog resources :updates resources :posts resources :fun resources :scraps # Defines the root path route ("/") # root "posts#index" resources :shrines resources :ambition resource :idol resource :release resource :lethal resource :delirious resource :spiraleye resource :spirit resource :shadow end