Class: Git::ProcessRefChangesService

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

Constant Summary

Constants inherited from BaseService

BaseService::UnauthorizedError

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?, #can_all?, #can_any?

Constructor Details

This class inherits a constructor from BaseService

Instance Method Details

#executeObject



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

def execute
  changes = params[:changes]

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

  perform_housekeeping
end