mirror of
https://github.com/wahyd4/ocelots.git
synced 2026-08-16 16:36:28 +10:00
9 lines
270 B
Ruby
9 lines
270 B
Ruby
class ProfilesController < ApplicationController
|
|
def show
|
|
@person = Person.find_by_account params[:account]
|
|
unless current_person.blessed?
|
|
@person = nil if (current_person.teams & @person.teams).empty?
|
|
end
|
|
render :unknown unless @person
|
|
end
|
|
end |