notebook/app/controllers/main_controller.rb
2016-04-06 18:45:14 -05:00

20 lines
291 B
Ruby

# Controller for top-level pages of the site that do not have
# an associated model
class MainController < ApplicationController
def index
redirect_to :dashboard if user_signed_in?
end
def comingsoon
end
def anoninfo
end
def attribution
end
def dashboard
end
end