Browse Source

remove referralCode field, no longer in Account

tags/v0.12.8
Jonathan Cobb 4 years ago
parent
commit
5d7926167d
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      bubble-server/src/main/java/bubble/model/account/Account.java

+ 1
- 1
bubble-server/src/main/java/bubble/model/account/Account.java View File

@@ -85,7 +85,7 @@ public class Account extends IdentifiableBaseParentEntity implements TokenPrinci
public static final String[] UPDATE_FIELDS = {"url", "description", "autoUpdatePolicy"};
public static final String[] ADMIN_UPDATE_FIELDS = ArrayUtil.append(UPDATE_FIELDS, "suspended", "admin");
public static final String[] CREATE_FIELDS = ArrayUtil.append(ADMIN_UPDATE_FIELDS,
"name", "referralCode", "termsAgreed", "preferredPlan");
"name", "termsAgreed", "preferredPlan");

public static final String ROOT_USERNAME = "root";
public static final int EMAIL_MAX_LENGTH = 100;


Loading…
Cancel
Save