10 lines
135 B
Ruby
10 lines
135 B
Ruby
class HomeController < ApplicationController
|
|
|
|
def index
|
|
respond_to do |format|
|
|
format.html # index.html.erb
|
|
end
|
|
end
|
|
|
|
end
|