5 lines
136 B
Ruby
5 lines
136 B
Ruby
module ServicesHelper
|
|
def contact_proxy(friend)
|
|
friend.contact || Contact.new(:person => friend.person, :aspects => [])
|
|
end
|
|
end
|