1
0
Fork 0
mirror of synced 2024-09-30 17:18:14 +13:00

Quick fixes for self deployment.

This commit is contained in:
mike12345567 2020-12-04 12:07:51 +00:00
parent a5d2e9a3b9
commit ee37bca225

View file

@ -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
}