summaryrefslogtreecommitdiff
path: root/app/workers/group_destroy_worker.rb
blob: f577b310b206107dfe5a602d9a5962425df30903 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
class GroupDestroyWorker
  include ApplicationWorker
  include ExceptionBacktrace

  def perform(group_id, user_id)
    begin
      group = Group.with_deleted.find(group_id)
    rescue ActiveRecord::RecordNotFound
      return
    end

    user = User.find(user_id)

    Groups::DestroyService.new(group, user).execute
  end
end