summaryrefslogtreecommitdiff
path: root/lib/api/deploy_keys.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/api/deploy_keys.rb')
-rw-r--r--lib/api/deploy_keys.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/api/deploy_keys.rb b/lib/api/deploy_keys.rb
index 6dc9beb57ec..825e05fbae3 100644
--- a/lib/api/deploy_keys.rb
+++ b/lib/api/deploy_keys.rb
@@ -76,7 +76,8 @@ module API
requires :key_id, type: Integer, desc: 'The ID of the deploy key'
end
post ":id/#{path}/:key_id/enable" do
- key = EnableDeployKeyService.new(user_project, current_user, declared(params)).execute
+ key = ::Projects::EnableDeployKeyService.new(user_project,
+ current_user, declared(params)).execute
if key
present key, with: Entities::SSHKey