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

Version Path
hephaestus-0.8.16.1 config/routes.rb
hephaestus-0.8.16 config/routes.rb
hephaestus-0.8.15.5 config/routes.rb
hephaestus-0.8.15.4 config/routes.rb
hephaestus-0.8.15.3 config/routes.rb
hephaestus-0.8.15.2 config/routes.rb
hephaestus-0.8.15.1 config/routes.rb
hephaestus-0.8.15 config/routes.rb
hephaestus-0.8.14 config/routes.rb
hephaestus-0.8.13 config/routes.rb
hephaestus-0.8.12.2 config/routes.rb
hephaestus-0.8.12.1 config/routes.rb
hephaestus-0.8.12 config/routes.rb
hephaestus-0.8.11 config/routes.rb
hephaestus-0.8.10 config/routes.rb
hephaestus-0.8.9.2 config/routes.rb
hephaestus-0.8.9.1 config/routes.rb
hephaestus-0.8.9 config/routes.rb
hephaestus-0.8.8 config/routes.rb
hephaestus-0.8.7.5 config/routes.rb