walter/test/dummy/app/controllers/dashboard_controller.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

8 lines
137 B
Ruby

# frozen_string_literal: true
class DashboardController < ApplicationController
def home; end
def other; end
def missing; end
end