2cc6485518
Review changes
7 lines
161 B
Ruby
7 lines
161 B
Ruby
module MattermostHelper
|
|
def mattermost_teams_options(teams)
|
|
teams.map do |team|
|
|
[team['display_name'] || team['name'], team['id']]
|
|
end
|
|
end
|
|
end
|