Browse Source

add adminEmail to AccountPlan create fields

tags/v1.4.17
Jonathan Cobb 3 years ago
parent
commit
e5a30a0b6e
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      bubble-server/src/main/java/bubble/model/bill/AccountPlan.java

+ 1
- 1
bubble-server/src/main/java/bubble/model/bill/AccountPlan.java View File

@@ -47,7 +47,7 @@ public class AccountPlan extends IdentifiableBase implements HasNetwork {
public static final String[] UPDATE_FIELDS = {"description", "paymentMethod", "paymentMethodObject"};

public static final String[] CREATE_FIELDS = ArrayUtil.append(UPDATE_FIELDS,
"name", "launchType", "forkHost", "locale", "timezone", "domain", "network",
"name", "launchType", "forkHost", "adminEmail", "locale", "timezone", "domain", "network",
"sshKey", "syncAccount", "launchLock", "sendErrors", "sendMetrics", "plan", "footprint");

@SuppressWarnings("unused")


Loading…
Cancel
Save