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

users_helper.rb « helpers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9c623c9ba7cc1b959b9ee64a63eef87a50234ab8 (plain)
1
2
3
4
5
6
7
module UsersHelper
  def user_link(user)
    link_to(user.name, user_path(user),
            title: user.email,
            class: 'has-tooltip commit-committer-link')
  end
end