Class: Git::ProcessRefChangesService

Inherits:
BaseService show all
Defined in:
app/services/git/process_ref_changes_service.rb

Constant Summary collapse

PIPELINE_PROCESS_LIMIT =
4

Instance Attribute Summary

Attributes inherited from BaseService

#current_user, #params, #project

Instance Method Summary collapse

Methods inherited from BaseService

#initialize

Methods included from BaseServiceUtility

#deny_visibility_level, #event_service, #log_error, #log_info, #notification_service, #system_hook_service, #todo_service, #visibility_level

Methods included from Gitlab::Allowable

#can?

Constructor Details

This class inherits a constructor from BaseService

Instance Method Details

#executeObject



7
8
9
10
11
12
13
14
# File 'app/services/git/process_ref_changes_service.rb', line 7

def execute
  changes = params[:changes]

  process_changes_by_action(:branch, changes.branch_changes)
  process_changes_by_action(:tag, changes.tag_changes)

  perform_housekeeping
end