diff options
author | Ash McKenzie <amckenzie@gitlab.com> | 2018-07-31 15:50:31 +1000 |
---|---|---|
committer | Ash McKenzie <amckenzie@gitlab.com> | 2018-08-01 00:24:17 +1000 |
commit | cda96eb70992cc80d0dde8195df57d7b5c4a1429 (patch) | |
tree | eb99d0e0773ba25d4a622a7d4af9f12cab7350e3 /lib/gitlab_custom_hook.rb | |
parent | 886b2178bfffa8d355e25a743132ece11c6d3bb2 (diff) | |
download | gitlab-shell-cda96eb70992cc80d0dde8195df57d7b5c4a1429.tar.gz |
Use gl_id instead of key_id
- Is possible that gl_id could be a 'user_id'
- Is a more accurate variable name
Diffstat (limited to 'lib/gitlab_custom_hook.rb')
-rw-r--r-- | lib/gitlab_custom_hook.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/gitlab_custom_hook.rb b/lib/gitlab_custom_hook.rb index 67096df..de6eb38 100644 --- a/lib/gitlab_custom_hook.rb +++ b/lib/gitlab_custom_hook.rb @@ -5,9 +5,9 @@ require_relative 'gitlab_metrics' class GitlabCustomHook attr_reader :vars, :config - def initialize(repo_path, key_id) + def initialize(repo_path, gl_id) @repo_path = repo_path - @vars = { 'GL_ID' => key_id } + @vars = { 'GL_ID' => gl_id } @config = GitlabConfig.new end |