summaryrefslogtreecommitdiff
path: root/app/workers/todos_destroyer/entity_leave_worker.rb
blob: 4996456dc91274cae2e77c1dae15cd1f46b0d69a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

module TodosDestroyer
  class EntityLeaveWorker # rubocop:disable Scalability/IdempotentWorker
    include ApplicationWorker
    include TodosDestroyerQueue

    loggable_arguments 2

    def perform(user_id, entity_id, entity_type)
      ::Todos::Destroy::EntityLeaveService.new(user_id, entity_id, entity_type).execute
    end
  end
end