6 lines
102 B
Ruby
6 lines
102 B
Ruby
class HomeController < ApplicationController
|
|
skip_before_action :authenticate
|
|
def index
|
|
end
|
|
end
|