summaryrefslogtreecommitdiff
path: root/app/services/files/destroy_service.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/services/files/destroy_service.rb')
-rw-r--r--app/services/files/destroy_service.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/app/services/files/destroy_service.rb b/app/services/files/destroy_service.rb
deleted file mode 100644
index e294659bc98..00000000000
--- a/app/services/files/destroy_service.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-module Files
- class DestroyService < Files::BaseService
- def commit
- repository.delete_file(
- current_user,
- @file_path,
- message: @commit_message,
- branch_name: @target_branch,
- author_email: @author_email,
- author_name: @author_name,
- start_project: @start_project,
- start_branch_name: @start_branch)
- end
- end
-end