Welcome to mirror list, hosted at ThFree Co, Russian Federation.

delete_service.rb « files « services « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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