Class: Commits::RevertService

Inherits:
ChangeService show all
Defined in:
app/services/commits/revert_service.rb

Constant Summary

Constants inherited from CreateService

CreateService::ValidationError

Constants inherited from BaseService

BaseService::UnauthorizedError

Instance Attribute Summary

Attributes inherited from BaseService

#current_user, #params, #project

Instance Method Summary collapse

Methods inherited from ChangeService

#initialize

Methods inherited from CreateService

#execute, #initialize

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 Commits::ChangeService

Instance Method Details

#create_commit!Object



5
6
7
8
9
10
11
# File 'app/services/commits/revert_service.rb', line 5

def create_commit!
  commit_change(:revert) do |message|
    repository.revert(current_user, @commit, @branch_name, message,
      start_project: @start_project, start_branch_name: @start_branch, dry_run: @dry_run
    )
  end
end