Files
ocelots/app/controllers/team_controller.rb
T

5 lines
109 B
Ruby

class TeamController < ApplicationController
def show
@team = Team.find_by_slug params[:slug]
end
end