gitlab-org--gitlab-foss/lib/gitlab/gl_id.rb

12 lines
152 B
Ruby
Raw Normal View History

2016-06-15 12:59:37 +00:00
module Gitlab
module GlId
def self.gl_id(user)
if user.present?
"user-#{user.id}"
else
""
end
end
end
end