mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-09 12:46:07 +10:00
12 lines
152 B
Ruby
12 lines
152 B
Ruby
module Gitlab
|
|
module GlId
|
|
def self.gl_id(user)
|
|
if user.present?
|
|
"user-#{user.id}"
|
|
else
|
|
""
|
|
end
|
|
end
|
|
end
|
|
end
|