two-pack/redmine_xlsx_format_issue_exporter

View on GitHub
lib/redmine_xlsx_format_issue_exporter/files_query_column.rb

Summary

Maintainability
A
0 mins
Test Coverage
module RedmineXlsxFormatIssueExporter
  class FilesQueryColumn < QueryColumn

    def caption
      l(:label_attachment_plural)
    end

    def value(issue)
      issue.attachments.map {|a| a.filename}.join("\n")
    end

    def value_object(issue)
      issue.attachments.map {|a| a.filename}.join("\n")
    end

  end
end