Sha256: 97f84da3b345f09dd3126e68d0b76ab5c4c31d8fb0f60e72d76cad186b24b8d1
Contents?: true
Size: 575 Bytes
Versions: 56
Compression:
Stored size: 575 Bytes
Contents
# typed: false # frozen_string_literal: true # this file doesn't actually do anything; consumed routes are # in lib/hephaestus/engine.rb Hephaestus::Engine.routes.draw do resources :settings, only: [:new, :edit] ############################################# # error pages -- these MUST be at the end! ## ############################################# get "/500", to: "application#render500" if Rails.env.production? || Rails.env.staging? match "/", to: "application#not_found", via: :all match "/*unmatched_route", to: "application#not_found", via: :all end
Version data entries
56 entries across 56 versions & 1 rubygems