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

create_service.rb « files « services « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 00a8dcf093452510c4407450dbb25dfbc3d384df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
module Files
  class CreateService < Files::BaseService
    def create_commit!
      repository.create_file(
        current_user,
        @file_path,
        @file_content,
        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