trabajo-afectivo/app/jobs/user_device_log_job.rb

14 lines
309 B
Ruby
Raw Normal View History

2022-01-01 13:38:12 +00:00
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
class UserDeviceLogJob < ApplicationJob
def perform(http_user_agent, remote_ip, user_id, fingerprint, type)
UserDevice.add(
http_user_agent,
remote_ip,
user_id,
fingerprint,
type,
)
end
end