playground/app/controllers/fun_controller.rb

11 lines
136 B
Ruby
Raw Normal View History

2026-05-17 03:44:36 +00:00
class FunController < ApplicationController
allow_unauthenticated_access
def index
end
def spirit
end
def show
end
end