stats_controller.rb 122 Bytes
Newer Older
patrickgerland's avatar
patrickgerland committed
1 2 3 4 5 6
class StatsController < ApplicationController
	def index
		@stat = PlayerStat.all
		render "stats/index.html.erb"
	end
end