parsley/app/controllers/home_controller.rb

13 lines
140 B
Ruby
Raw Normal View History

2016-01-30 21:20:15 -06:00
class HomeController < ApplicationController
2018-03-29 01:57:00 -05:00
2018-04-17 18:38:48 -05:00
skip_forgery_protection
2018-03-29 01:57:00 -05:00
def index
render layout: false
end
2016-01-30 21:20:15 -06:00
def about
end
end