summaryrefslogtreecommitdiff
path: root/lib/gitlab_shell.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab_shell.rb')
-rw-r--r--lib/gitlab_shell.rb9
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/gitlab_shell.rb b/lib/gitlab_shell.rb
index 57c70f5..6ad67c1 100644
--- a/lib/gitlab_shell.rb
+++ b/lib/gitlab_shell.rb
@@ -155,8 +155,9 @@ class GitlabShell # rubocop:disable Metrics/ClassLength
if @command == 'git-lfs-authenticate'
GitlabMetrics.measure('lfs-authenticate') do
- $logger.info('Processing LFS authentication', user: log_username)
- lfs_authenticate
+ operation = args[2]
+ $logger.info('Processing LFS authentication', operation: operation, user: log_username)
+ lfs_authenticate(operation)
end
return
end
@@ -224,8 +225,8 @@ class GitlabShell # rubocop:disable Metrics/ClassLength
@config.audit_usernames ? username : "user with id #{@gl_id}"
end
- def lfs_authenticate
- lfs_access = api.lfs_authenticate(@gl_id, @repo_name)
+ def lfs_authenticate(operation)
+ lfs_access = api.lfs_authenticate(@gl_id, @repo_name, operation)
return unless lfs_access