summaryrefslogtreecommitdiff
path: root/app/services/files/delete_service.rb
blob: 50f0ffcac9fda47bb8fbfdcbd079b4d93a1b3be5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
module Files
  class DeleteService < Files::BaseService
    def commit
      repository.remove_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