Sha256: 97f84da3b345f09dd3126e68d0b76ab5c4c31d8fb0f60e72d76cad186b24b8d1

Contents?: true

Size: 575 Bytes

Versions: 57

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

57 entries across 57 versions & 1 rubygems

Version Path
hephaestus-0.8.7.5 config/routes.rb
hephaestus-0.8.7.4 config/routes.rb
hephaestus-0.8.7.3 config/routes.rb
hephaestus-0.8.7.2 config/routes.rb
hephaestus-0.8.7.1 config/routes.rb
hephaestus-0.8.7 config/routes.rb
hephaestus-0.8.6 config/routes.rb
hephaestus-0.8.5 config/routes.rb
hephaestus-0.8.4.1 config/routes.rb
hephaestus-0.8.4 config/routes.rb
hephaestus-0.8.3.4 config/routes.rb
hephaestus-0.8.3.3 config/routes.rb
hephaestus-0.8.3.2 config/routes.rb
hephaestus-0.8.3.1 config/routes.rb
hephaestus-0.8.3 config/routes.rb
hephaestus-0.8.2 config/routes.rb
hephaestus-0.8.1 config/routes.rb
hephaestus-0.8.0 config/routes.rb
hephaestus-0.7.7.2 config/routes.rb
hephaestus-0.7.7 config/routes.rb