6 lines
108 B
Ruby
6 lines
108 B
Ruby
class HomeController < ApplicationController
|
|
skip_before_action :authenticate_user!
|
|
def index
|
|
end
|
|
end
|