11 lines
113 B
Ruby
11 lines
113 B
Ruby
class HomeController < ApplicationController
|
|
|
|
def index
|
|
render layout: false
|
|
end
|
|
|
|
def about
|
|
|
|
end
|
|
end
|