7 lines
124 B
Ruby
7 lines
124 B
Ruby
|
class PagesController < ApplicationController
|
||
|
skip_before_action :authenticate_user!, only: [:home]
|
||
|
|
||
|
def home
|
||
|
end
|
||
|
end
|