trabajo-afectivo/lib/sequencer/unit/import/freshdesk/contacts/blocked.rb

22 lines
431 B
Ruby
Raw Normal View History

2022-01-01 13:38:12 +00:00
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
2021-05-25 12:30:12 +00:00
class Sequencer
class Unit
module Import
module Freshdesk
module Contacts
class Blocked < Sequencer::Unit::Import::Freshdesk::Contacts::Default
def request_params
super.merge(
state: 'blocked',
)
end
end
end
end
end
end
end