Websites/config/routes.rb

20 lines
558 B
Ruby
Raw Normal View History

2024-05-03 03:04:43 +00:00
# frozen_string_literal: true
Rails.application.routes.draw do
extend ButtsAreCoolRoutes
extend E621WsRoutes
extend FurryCoolRoutes
2024-07-25 06:44:22 +00:00
extend MaidGayRoutes
2024-05-03 03:04:43 +00:00
extend OceanicWsRoutes
extend YiffMediaRoutes
extend YiffRestRoutes
extend YiffRocksRoutes
2024-06-11 07:15:05 +00:00
extend OtherRoutes
2024-05-03 03:04:43 +00:00
get "up" => "rails/health#show", as: :rails_health_check
get "/online", to: "application#online"
root to: "application#access_denied"
match "*other", to: "application#not_found", via: :all, constraints: ->(req) { !req.path.start_with?("/rails/active_storage") }
end