This commit is contained in:
2015-09-20 13:26:45 -05:00
parent f8c03d6f5c
commit 692446b97b
25 changed files with 283 additions and 13 deletions

View File

@ -1,2 +1,7 @@
module ApplicationHelper
def page_link(person)
return if person.phone.blank?
link_to 'page', page_person_path(person)
end
end