playground/app/controllers/welcome_controller.rb

11 lines
173 B
Ruby
Raw Normal View History

2026-05-17 03:44:36 +00:00
class WelcomeController < ApplicationController
allow_unauthenticated_access(only: %i[index show homepage])
def index
end
def show
end
def homepage
end
end