polyglot/app/controllers/pages_controller.rb

10 lines
142 B
Ruby

class PagesController < ApplicationController
skip_before_action :authenticate_user!, only: [:call]
def call
end
def home
end
end