Method: AssignmentStudentPreviewMethods#attachments

Defined in:
lib/kuali-sakai-common-lib/assignments.rb

#attachmentsObject

Returns an array of strings. Each element in the array is the name of attached files.



634
635
636
637
638
# File 'lib/kuali-sakai-common-lib/assignments.rb', line 634

def attachments
  names = []
  frm.ul(:class=>"attachList indnt1").links.each { |link| names << link.text }
  return names
end