Welcome to mirror list, hosted at ThFree Co, Russian Federation.

work_items.rb « emails « mailers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b14111c94eb7314d29e07e78ce96f03b2b947aad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

module Emails
  module WorkItems
    def import_work_items_csv_email(user_id, project_id, results)
      @user = User.find(user_id)
      @project = Project.find(project_id)
      @results = results

      email_with_layout(
        to: @user.notification_email_for(@project.group),
        subject: subject('Imported work items'))
    end

    def export_work_items_csv_email(user, project, csv_data, export_status)
      csv_email(user, project, csv_data, export_status, 'work_items')
    end
  end
end