LafayetteCollegeLibraries/spot

View on GitHub
app/jobs/mint_handle_job.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
# frozen_string_literal: true
#
# Tiny job wrapper that calls our HandleMintingService
# to do the heavy-lifting.
class MintHandleJob < ApplicationJob
  def perform(work)
    Spot::HandleService.new(work).mint
  end
end