summaryrefslogtreecommitdiff
path: root/app/workers/clusters/cleanup/service_account_worker.rb
blob: fab6318a8070d7646f092973dd7e1df97a34c704 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

module Clusters
  module Cleanup
    class ServiceAccountWorker
      include ApplicationWorker
      include ClusterQueue
      include ClusterApplications

      # TODO: Merge with https://gitlab.com/gitlab-org/gitlab/merge_requests/16954
      # We're splitting the above MR in smaller chunks to facilitate reviews
      def perform
      end
    end
  end
end