gitlab-org--gitlab-foss/app/services/files/delete_service.rb

16 lines
391 B
Ruby
Raw Normal View History

module Files
2017-04-19 20:37:44 -04:00
class DeleteService < Files::BaseService
def create_commit!
repository.delete_file(
current_user,
@file_path,
message: @commit_message,
2017-04-19 20:37:44 -04:00
branch_name: @branch_name,
author_email: @author_email,
author_name: @author_name,
start_project: @start_project,
start_branch_name: @start_branch)
end
end
end