mirror of
https://github.com/wahyd4/ocelots.git
synced 2026-08-23 03:46:12 +10:00
6 lines
147 B
Ruby
6 lines
147 B
Ruby
class TeamController < ApplicationController
|
|
def show
|
|
@team = Team.find_by_slug params[:slug]
|
|
render :unknown_team unless @team
|
|
end
|
|
end |