cb22b396eb
Add SDK functions Co-authored-by: Sojan <sojan@pepalo.com>
8 lines
290 B
Ruby
8 lines
290 B
Ruby
class ContactAvatarJob < ApplicationJob
|
|
queue_as :default
|
|
|
|
def perform(contact, avatar_url)
|
|
avatar_resource = LocalResource.new(avatar_url)
|
|
contact.avatar.attach(io: avatar_resource.file, filename: avatar_resource.tmp_filename, content_type: avatar_resource.encoding)
|
|
end
|
|
end
|