mirror of
https://github.com/wahyd4/ocelots.git
synced 2026-08-20 02:16:14 +10:00
6 lines
158 B
Ruby
6 lines
158 B
Ruby
class ProfilesController < ApplicationController
|
|
def show
|
|
@person = Person.find_by_account params[:account]
|
|
render :unknown unless @person
|
|
end
|
|
end |