Allow to disable ssh_key

This commit is contained in:
Piotr Sarnacki 2014-08-01 04:33:04 +02:00
parent 49d09cda8e
commit 534ac6431b
5 changed files with 8 additions and 3 deletions

View File

@ -65,7 +65,7 @@ Travis.Router.map ->
@route 'index', path: '/'
@resource 'env_vars', ->
@route 'new'
@resource 'ssh_key'
@resource 'ssh_key' if Travis.config.ssh_key_enabled
@route 'first_sync'
@route 'insufficient_oauth_permissions'

View File

@ -1,7 +1,9 @@
<ul class="navigation">
<li>{{#link-to "settings.index"}}General settings{{/link-to}}</li>
<li>{{#link-to "env_vars"}}Environment variables{{/link-to}}</li>
<li>{{#link-to "ssh_key"}}Ssh key{{/link-to}}</li>
{{#if Travis.config.ssh_key_enabled}}
<li>{{#link-to "ssh_key"}}Ssh key{{/link-to}}</li>
{{/if}}
</ul>
<div id="settings">

View File

@ -81,6 +81,7 @@ $.extend Travis,
pusher_key: $('meta[name="travis.pusher_key"]').attr('value')
ga_code: $('meta[name="travis.ga_code"]').attr('value')
code_climate: $('meta[name="travis.code_climate"]').attr('value')
ssh_key_enabled: $('meta[name="travis.ssh_key_enabled"]').attr('value') == 'true'
code_climate_url: $('meta[name="travis.code_climate_url"]').attr('value')
show_repos_hint: 'private'
avatar_default_url: 'https://travis-ci.org/images/mailer/mascot-avatar-40px.png'

View File

@ -31,5 +31,6 @@ run Travis::Web::App.build(
pusher_key: ENV['PUSHER_KEY'],
ga_code: ENV['GA_CODE'],
root: File.expand_path('../public', __FILE__),
server_start: Time.now
server_start: Time.now,
ssh_key_enabled: ENV['SSH_KEY_ENABLED']
)

View File

@ -4,6 +4,7 @@
<link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,800' rel='stylesheet' type='text/css'>
<meta charset="UTF-8">
<meta rel="travis.api_endpoint" href="https://api.travis-ci.org">
<meta name="travis.ssh_key_enabled" value="false">
<meta name="travis.pusher_key" value="5df8ac576dcccf4fd076">
<meta name="travis.ga_code" value="UA-24868285-1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">