2012-01-14 21:26:35 +02:00
|
|
|
= render "repositories/head"
|
2012-09-05 08:56:59 +03:00
|
|
|
|
|
|
|
%p.slead
|
|
|
|
Deploy keys allow read-only access to repository. It matches perfectly for CI, staging or production servers.
|
|
|
|
|
|
|
|
- if can? current_user, :admin_project, @project
|
2012-08-10 18:07:50 -04:00
|
|
|
= link_to new_project_deploy_key_path(@project), class: "btn small", title: "New Deploy Key" do
|
2012-06-04 01:37:27 +03:00
|
|
|
Add Deploy Key
|
2012-03-06 00:29:40 +02:00
|
|
|
- if @keys.any?
|
2012-03-28 10:46:51 +03:00
|
|
|
%table
|
2012-09-05 08:56:59 +03:00
|
|
|
%thead
|
|
|
|
%tr
|
|
|
|
%th Keys
|
|
|
|
%th
|
|
|
|
%th
|
2012-03-06 00:29:40 +02:00
|
|
|
- @keys.each do |key|
|
2012-08-10 18:07:50 -04:00
|
|
|
= render(partial: 'show', locals: {key: key})
|