gambosite/app/controllers/bot_controller.rb

17 lines
196 B
Ruby
Raw Permalink Normal View History

2025-01-27 10:36:57 -08:00
class BotController < ApplicationController
skip_before_action :verify_authenticity_token
before_action :authenticate
def players
end
def summary
end
def player_name
end
end