17 lines
196 B
Ruby
17 lines
196 B
Ruby
class BotController < ApplicationController
|
|
skip_before_action :verify_authenticity_token
|
|
before_action :authenticate
|
|
|
|
def players
|
|
|
|
end
|
|
|
|
def summary
|
|
|
|
end
|
|
|
|
def player_name
|
|
|
|
end
|
|
end
|