BigW Consortium Gitlab

mattermost_helper.rb 161 Bytes
module MattermostHelper
  def mattermost_teams_options(teams)
    teams.map do |team|
      [team['display_name'] || team['name'], team['id']]
    end
  end
end