Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/helpers/users_helper.rb')
-rw-r--r--app/helpers/users_helper.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/app/helpers/users_helper.rb b/app/helpers/users_helper.rb
index e87bb27cf62..c1bca6b4c41 100644
--- a/app/helpers/users_helper.rb
+++ b/app/helpers/users_helper.rb
@@ -91,6 +91,21 @@ module UsersHelper
end
end
+ def work_information(user)
+ return unless user
+
+ organization = user.organization
+ job_title = user.job_title
+
+ if organization.present? && job_title.present?
+ s_('Profile|%{job_title} at %{organization}') % { job_title: job_title, organization: organization }
+ elsif job_title.present?
+ job_title
+ elsif organization.present?
+ organization
+ end
+ end
+
private
def get_profile_tabs