Skip to content

Commit

Permalink
fix: rubocop
Browse files Browse the repository at this point in the history
  • Loading branch information
takaishi committed Dec 7, 2024
1 parent b0377ac commit 35f8fc4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/jobs/generate_entrysheet_job.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ class GenerateEntrysheetJob < ApplicationJob
def perform(conference_id, profile_id, speaker_id = nil, printer_id = nil)
puts("printer_id: #{printer_id}")
conference = Conference.find(conference_id)
obj = { profile_id:, speaker_id:}.to_json
obj = { profile_id:, speaker_id: }.to_json

encrypted = ActiveSupport::MessageEncryptor.new(Rails.application.secret_key_base.byteslice(0..31)).encrypt_and_sign(obj)

Expand Down

0 comments on commit 35f8fc4

Please sign in to comment.