summaryrefslogtreecommitdiff
path: root/app/controllers
diff options
context:
space:
mode:
authorZ.J. van de Weg <zegerjan@gitlab.com>2016-08-08 20:32:10 +0200
committerZ.J. van de Weg <zegerjan@gitlab.com>2016-08-08 20:59:51 +0200
commit7e47a82899bdb10d2cdc61ce237a25bfa7f8a392 (patch)
tree0600640a8d146b0c6505ee5e6a466dfda3ce8da9 /app/controllers
parent81e839f41b38d165bd6af4899e12be2967d607e8 (diff)
downloadgitlab-ce-7e47a82899bdb10d2cdc61ce237a25bfa7f8a392.tar.gz
Namespace EnableDeployKeyService under Projects
Diffstat (limited to 'app/controllers')
-rw-r--r--app/controllers/projects/deploy_keys_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/projects/deploy_keys_controller.rb b/app/controllers/projects/deploy_keys_controller.rb
index ade2c54552b..529e0aa2d33 100644
--- a/app/controllers/projects/deploy_keys_controller.rb
+++ b/app/controllers/projects/deploy_keys_controller.rb
@@ -27,7 +27,7 @@ class Projects::DeployKeysController < Projects::ApplicationController
end
def enable
- EnableDeployKeyService.new(@project, current_user, params).execute
+ Projects::EnableDeployKeyService.new(@project, current_user, params).execute
redirect_to namespace_project_deploy_keys_path(@project.namespace, @project)
end