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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorRémy Coutable <remy@rymai.me>2018-09-27 13:28:27 +0300
committerRémy Coutable <remy@rymai.me>2018-09-27 13:28:27 +0300
commit2b5aa3efb86261e315ee770f95c111eb9b4bc416 (patch)
tree4e6d6ffc7818379b96135a603b4b32255a6e5e00 /app
parentd5bce06df1ec36371db208d0aaf42d849eb63bcf (diff)
parent271776d4aa25a23b6f58c6befa94a240e61d4120 (diff)
Merge branch '43832-adds-chdmod-to-commits-actions-api' into 'master'
Allows to work with execute permissions in GitLab API Closes #43832 See merge request gitlab-org/gitlab-ce!21866
Diffstat (limited to 'app')
-rw-r--r--app/services/files/multi_service.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/services/files/multi_service.rb b/app/services/files/multi_service.rb
index 08088f8c592..c9d3ee31d82 100644
--- a/app/services/files/multi_service.rb
+++ b/app/services/files/multi_service.rb
@@ -2,7 +2,7 @@
module Files
class MultiService < Files::BaseService
- UPDATE_FILE_ACTIONS = %w(update move delete).freeze
+ UPDATE_FILE_ACTIONS = %w(update move delete chmod).freeze
def create_commit!
transformer = Lfs::FileTransformer.new(project, @branch_name)