diff options
author | Kamil Trzciński <ayufan@ayufan.eu> | 2018-10-05 17:35:59 +0200 |
---|---|---|
committer | Kamil Trzciński <ayufan@ayufan.eu> | 2018-10-05 17:39:42 +0200 |
commit | 9f9cac67ab7292be0037082120f0995152624599 (patch) | |
tree | 97bf024258da5008e0040e1b2ab5256f7a6e58d8 /lib | |
parent | 393331b40bc9044b658896028869d29eed126a71 (diff) | |
download | gitlab-ce-9f9cac67ab7292be0037082120f0995152624599.tar.gz |
Fix CE to EE merge (backport)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/gitlab/git/push.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gitlab/git/push.rb b/lib/gitlab/git/push.rb index 7c1309721fd..b6577ba17f1 100644 --- a/lib/gitlab/git/push.rb +++ b/lib/gitlab/git/push.rb @@ -5,7 +5,7 @@ module Gitlab class Push include Gitlab::Utils::StrongMemoize - attr_reader :oldrev, :newrev + attr_reader :ref, :oldrev, :newrev def initialize(project, oldrev, newrev, ref) @project = project |