playground/app/controllers/fun_controller.rb
2026-05-17 03:44:36 +00:00

10 lines
136 B
Ruby

class FunController < ApplicationController
allow_unauthenticated_access
def index
end
def spirit
end
def show
end
end