debian-mirror-gitlab/lib/gitlab/background_migration/update_vulnerabilities_to_dismissed.rb

14 lines
364 B
Ruby
Raw Normal View History

2020-04-25 10:58:03 +05:30
# frozen_string_literal: true
module Gitlab
module BackgroundMigration
# rubocop: disable Style/Documentation
class UpdateVulnerabilitiesToDismissed
def perform(project_id)
end
end
end
end
Gitlab::BackgroundMigration::UpdateVulnerabilitiesToDismissed.prepend_if_ee('EE::Gitlab::BackgroundMigration::UpdateVulnerabilitiesToDismissed')