5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-07-03 00:16:08 +00:00
panel/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