gitlab-org--gitlab-foss/app/helpers/mattermost_helper.rb

10 lines
192 B
Ruby

# frozen_string_literal: true
module MattermostHelper
def mattermost_teams_options(teams)
teams.map do |team|
[team['display_name'] || team['name'], team['id']]
end
end
end