13 lines
217 B
Ruby
13 lines
217 B
Ruby
# typed: true
|
|
class PagesController < ApplicationController
|
|
skip_before_action :authenticate_user!, only: %i[root user_script]
|
|
|
|
def root
|
|
render :root
|
|
end
|
|
|
|
def user_script
|
|
render :user_script
|
|
end
|
|
end
|