Class: Git::TagPushService

Inherits:
BaseService show all
Includes:
ChangeParams
Defined in:
app/services/git/tag_push_service.rb

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
15
16
# File 'app/services/git/tag_push_service.rb', line 7

def execute
  return unless Gitlab::Git.tag_ref?(ref)

  project.repository.before_push_tag
  TagHooksService.new(project, current_user, params).execute

  unlock_artifacts

  true
end