walter/test/dummy/config/routes.rb
Jonathan Abbett 60dcd0dd31
Don't start a tour if the first step's attachTo isn't present
Resolves #28, includes documentation note about step-skipping behavior.
2020-01-09 07:39:29 -05:00

10 lines
244 B
Ruby

# frozen_string_literal: true
Rails.application.routes.draw do
get "dashboard/home"
get "dashboard/other"
get "dashboard/missing"
# For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
end