sul-dlss/argo

View on GitHub
app/controllers/bulk_actions/add_workflow_jobs_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
B
83%
# frozen_string_literal: true

module BulkActions
  class AddWorkflowJobsController < ApplicationController
    include CreatesBulkActions
    self.action_type = 'AddWorkflowJob'

    def job_params
      super.merge(workflow: params[:workflow])
    end
  end
end