sul-dlss/argo

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

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
# frozen_string_literal: true

module BulkActions
  class ManageReleaseJobsController < ApplicationController
    include CreatesBulkActions
    self.action_type = 'ReleaseObjectJob'

    def job_params
      super.merge(to: params[:to], who: params[:who], what: params[:what], tag: params[:tag])
    end
  end
end