sutty/app/controllers/application_controller.rb

8 lines
143 B
Ruby
Raw Normal View History

2018-01-02 17:19:25 +00:00
class ApplicationController < ActionController::Base
protect_from_forgery with: :exception
2018-01-29 18:09:30 +00:00
def index
redirect_to sites_path
end
2018-01-02 17:19:25 +00:00
end