Browse Source

Quick fixes for self deployment.

pull/974/head
mike12345567 6 years ago
parent
commit
643cff06ea
  1. 6
      packages/server/src/api/controllers/deploy/Deployment.js

6
packages/server/src/api/controllers/deploy/Deployment.js

@ -19,6 +19,9 @@ class Deployment {
}
setQuota(quota) {
if (!quota) {
return
}
this.quota = quota
}
@ -31,6 +34,9 @@ class Deployment {
}
setVerification(verification) {
if (!verification) {
return
}
if (this.verification.quota) {
this.quota = this.verification.quota
}

Loading…
Cancel
Save