added a helper!

This commit is contained in:
nilsding 2014-11-11 07:09:36 +01:00
parent abe75c89a2
commit 0765677555
1 changed files with 7 additions and 0 deletions

View File

@ -1,2 +1,9 @@
module UserHelper
# Decides what user name to show.
# @return [String] The user name
def user_screen_name(user)
return APP_CONFIG['anonymous_name'] if user.nil?
return user.display_name unless user.display_name.blank?
user.screen_name
end
end