Newer
Older
class UsersController < ApplicationController
def show
@user= Person.where(:id => params[:id]).first
@user_profile = @user.profile
end
class UsersController < ApplicationController
def show
@user= Person.where(:id => params[:id]).first
@user_profile = @user.profile
end