mirror of
https://github.com/wahyd4/ocelots.git
synced 2026-08-09 04:56:21 +10:00
13 lines
236 B
Ruby
13 lines
236 B
Ruby
module TeamFilter
|
|
def with_team
|
|
@team = Team.find_by_slug params[:slug]
|
|
unless current_person.allowed_to_view_team?(@team)
|
|
@team = nil
|
|
end
|
|
if @team
|
|
yield @team
|
|
else
|
|
render :unknown
|
|
end
|
|
end
|
|
end |