diff --git a/src/views/Environment.vue b/src/views/Environment.vue index 8715a3c..c74cf78 100644 --- a/src/views/Environment.vue +++ b/src/views/Environment.vue @@ -130,7 +130,15 @@
  • - @@ -290,12 +298,19 @@ export default { application: function () { return this.applications[this.id] }, + environment: function () { return this.application['environments'][this.environmentName] }, + gitUrl: function () { return this.application.machineName + '@svn-1234.prod.hosting.acquia.com:' + this.application.machineName + '.git' }, + + isProduction: function () { + return this.environmentName == 'prod' + }, + sshUrl: function () { return this.application.machineName + '.' + this.environmentName + '@staging-1234.prod.hosting.acquia.com' }