From a8c17e85bba1b1010c50b66b53ac891b437445a2 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Thu, 27 Dec 2018 10:36:11 +0000 Subject: [PATCH] Can't restore databases on prod --- src/views/Environment.vue | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) 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' }