summaryrefslogtreecommitdiff
path: root/app/services/files/delete_service.rb
blob: 7952e5c95d42ea85756358fc68f4c96f9da2e2bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
  end
end