debian-mirror-gitlab/app/helpers/mattermost_helper.rb
2018-12-05 23:21:45 +05:30

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