Support pushing via SSH

This commit is contained in:
Kamil Trzcinski 2016-09-19 13:11:11 +02:00
parent b51ededc5f
commit 5790684d1f
2 changed files with 12 additions and 1 deletions

View File

@ -130,7 +130,14 @@ module Gitlab
if actor
token_handler = Gitlab::LfsToken.new(actor)
Result.new(actor, nil, token_handler.type, read_authentication_abilities) if Devise.secure_compare(token_handler.value, password)
authentication_abilities =
if token_handler.user?
full_authentication_abilities
else
read_authentication_abilities
end
Result.new(actor, nil, token_handler.type, authentication_abilities) if Devise.secure_compare(token_handler.value, password)
end
end

View File

@ -33,6 +33,10 @@ module Gitlab
end
end
def user?
actor.is_a?(User)
end
def type
actor.is_a?(User) ? :lfs_token : :lfs_deploy_token
end