summaryrefslogtreecommitdiff
path: root/app/services/files/update_service.rb
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-06-02 10:45:13 +0200
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-06-02 10:45:13 +0200
commit3d416f1682c5e6a6ac1ea7013f66bbd0d23b452c (patch)
tree42df25ecb88654ef08549608122d89ddd5f45f82 /app/services/files/update_service.rb
parent2c403dfd924e0b1f5bc8a7a70d0ae757b350b7ee (diff)
downloadgitlab-ce-3d416f1682c5e6a6ac1ea7013f66bbd0d23b452c.tar.gz
Create activity event and execute hooks on web editor commit
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'app/services/files/update_service.rb')
-rw-r--r--app/services/files/update_service.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/services/files/update_service.rb b/app/services/files/update_service.rb
index 4d7ac3b7504..c972f8322bb 100644
--- a/app/services/files/update_service.rb
+++ b/app/services/files/update_service.rb
@@ -26,7 +26,7 @@ module Files
params[:content]
end
- repository.commit_file(
+ sha = repository.commit_file(
current_user,
path,
content,
@@ -34,6 +34,7 @@ module Files
params[:new_branch] || ref
)
+ after_commit(sha)
success
rescue Gitlab::Satellite::CheckoutFailed => ex
error("Your changes could not be committed because ref '#{ref}' could not be checked out", 400)