OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/app/helpers/meetings_helper.rb

5 lines
152 B

module MeetingsHelper
def format_participant_list(participants)
participants.sort.collect{|p| link_to_user p.user}.join("; ").html_safe
end
end