20 lines
415 B
Ruby
20 lines
415 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Branch can be deleted either by DeleteBranchService or by Git::BranchPushService.
|
|
class AfterBranchDeleteService < BaseService
|
|
attr_reader :branch_name
|
|
|
|
def execute(branch_name)
|
|
@branch_name = branch_name
|
|
|
|
stop_environments
|
|
end
|
|
|
|
private
|
|
|
|
def stop_environments
|
|
Ci::StopEnvironmentsService
|
|
.new(project, current_user)
|
|
.execute(branch_name)
|
|
end
|
|
end
|