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
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-05-28 18:08:02 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-05-28 18:08:02 +0300
commit1f1e53f43f87cada9b515571cc973e9eadcbc4e4 (patch)
treed9bca1bda729b495601634947665f11279b5d6cf /app/services/git/wiki_push_service
parenta83a97f60432c6c352af80d55339e9fe45b63307 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/services/git/wiki_push_service')
-rw-r--r--app/services/git/wiki_push_service/change.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/services/git/wiki_push_service/change.rb b/app/services/git/wiki_push_service/change.rb
index 8685850165a..14e622dd147 100644
--- a/app/services/git/wiki_push_service/change.rb
+++ b/app/services/git/wiki_push_service/change.rb
@@ -21,11 +21,11 @@ module Git
def event_action
case raw_change.operation
when :added
- Event::CREATED
+ :created
when :deleted
- Event::DESTROYED
+ :destroyed
else
- Event::UPDATED
+ :updated
end
end