parsley/app/controllers/home_controller.rb
2018-04-17 18:38:48 -05:00

13 lines
140 B
Ruby

class HomeController < ApplicationController
skip_forgery_protection
def index
render layout: false
end
def about
end
end