6 lines
107 B
Ruby
6 lines
107 B
Ruby
class PlayerController < ApplicationController
|
|
def show
|
|
@player = Player.find(params[:id])
|
|
end
|
|
end
|