9 lines
155 B
Ruby
9 lines
155 B
Ruby
# typed: true
|
|
class PagesController < ApplicationController
|
|
skip_before_action :authenticate_user!, only: [:root]
|
|
|
|
def root
|
|
render :root
|
|
end
|
|
end
|