mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-08-10 03:00:46 +00:00
10 lines
163 B
Ruby
10 lines
163 B
Ruby
# frozen_string_literal: true
|
|
|
|
module FullNameHelper
|
|
def full_name(first_name, last_name)
|
|
"#{first_name} #{last_name}"
|
|
end
|
|
end
|
|
|
|
FullNameHelper.prepend_mod
|