Commit f7b911d2 authored by miks's avatar miks

Path correction

parent 753d4cb2
...@@ -24,7 +24,7 @@ class DeployKeysController < ApplicationController ...@@ -24,7 +24,7 @@ class DeployKeysController < ApplicationController
end end
def create def create
@key = @project.deploy_keys.new(params[:key]) @key = @project.deploy_keys.new(params[:deploy_key])
@key.save @key.save
respond_with(@key) respond_with(@key)
...@@ -35,7 +35,7 @@ class DeployKeysController < ApplicationController ...@@ -35,7 +35,7 @@ class DeployKeysController < ApplicationController
@key.destroy @key.destroy
respond_to do |format| respond_to do |format|
format.html { redirect_to deploy_keys_url } format.html { redirect_to project_deploy_keys_url }
format.js { render :nothing => true } format.js { render :nothing => true }
end end
end end
......
%a.update-item{:href => project_deploy_key_path(key)} %a.update-item{:href => project_deploy_key_path(key.project, key)}
%span.update-title %span.update-title
= key.title = key.title
%span.update-author %span.update-author
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
%pre= @key.key %pre= @key.key
.clear .clear
.buttons .buttons
= link_to 'Remove', @key, :confirm => 'Are you sure?', :method => :delete, :class => "red-button delete-key right" = link_to 'Remove', project_deploy_key_path(@key.project, @key), :confirm => 'Are you sure?', :method => :delete, :class => "red-button delete-key right"
.clear .clear
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment