summaryrefslogtreecommitdiff
path: root/lib/gitlab/gl_id.rb
blob: 624fd00367e0f5c128497449630242824b62e416 (plain)
1
2
3
4
5
6
7
8
9
10
11
module Gitlab
  module GlId
    def self.gl_id(user)
      if user.present?
        "user-#{user.id}"
      else
        ""
      end
    end
  end
end