5770b6544d
- Externalize strings in milestones_helper - Externalize strings in app/services - Update PO file
27 lines
649 B
Ruby
27 lines
649 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Files
|
|
class DeleteService < Files::BaseService
|
|
def create_commit!
|
|
repository.delete_file(
|
|
current_user,
|
|
@file_path,
|
|
message: @commit_message,
|
|
branch_name: @branch_name,
|
|
author_email: @author_email,
|
|
author_name: @author_name,
|
|
start_project: @start_project,
|
|
start_branch_name: @start_branch)
|
|
end
|
|
|
|
private
|
|
|
|
def validate!
|
|
super
|
|
|
|
if file_has_changed?(@file_path, @last_commit_sha)
|
|
raise FileChangedError, _("You are attempting to delete a file that has been previously updated.")
|
|
end
|
|
end
|
|
end
|
|
end
|