Inline URLs
This commit is contained in:
parent
19b4b7a9fc
commit
176e6934d8
|
@ -158,7 +158,7 @@ export default {
|
||||||
},
|
},
|
||||||
|
|
||||||
gitUrl: function () {
|
gitUrl: function () {
|
||||||
return this.application.machineName + '@svn-1234.prod.hosting.acquia.com:' + this.application.machineName + '.git'
|
return `${this.application.machineName}@svn-1234.prod.hosting.acquia.com:${this.application.machineName}.git`
|
||||||
},
|
},
|
||||||
|
|
||||||
isProduction: function () {
|
isProduction: function () {
|
||||||
|
@ -166,7 +166,7 @@ export default {
|
||||||
},
|
},
|
||||||
|
|
||||||
sshUrl: function () {
|
sshUrl: function () {
|
||||||
return this.application.machineName + '.' + this.environmentName + '@staging-1234.prod.hosting.acquia.com'
|
return `${this.application.machineName}.${this.environmentName}@staging-1234.prod.hosting.acquia.com`
|
||||||
},
|
},
|
||||||
|
|
||||||
phpVersion: function () {
|
phpVersion: function () {
|
||||||
|
|
Reference in a new issue