13 lines
140 B
Ruby
13 lines
140 B
Ruby
class HomeController < ApplicationController
|
|
|
|
skip_forgery_protection
|
|
|
|
def index
|
|
render layout: false
|
|
end
|
|
|
|
def about
|
|
|
|
end
|
|
end
|