invites button

This commit is contained in:
ntr
2019-05-25 16:55:55 +10:00
parent 21efb909fb
commit e20b1f25a5
4 changed files with 11 additions and 2 deletions
-1
View File
@@ -61,7 +61,6 @@ pub fn account_from_token(token: String, tx: &mut Transaction) -> Result<Account
pub fn account_create(params: AccountCreateParams, tx: &mut Transaction) -> Result<Account, Error> {
let id = Uuid::new_v4();
info!("{:?} {:?}", params.password, params.password.len());
if params.password.len() < PASSWORD_MIN_LEN {
return Err(err_msg("password must be at least 12 characters"));
}