10 lines
241 B
Ruby
10 lines
241 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ClusterProjectConfigureWorker
|
|
include ApplicationWorker
|
|
include ClusterQueue
|
|
|
|
def perform(project_id)
|
|
# Scheduled for removal in https://gitlab.com/gitlab-org/gitlab-foss/issues/59319
|
|
end
|
|
end
|