コード例 #1
0
ファイル: logic.py プロジェクト: Jazzis18/the-tale
def get_account_id_by_email(email):
    account = AccountPrototype.get_by_email(normalize_email(email))
    return account.id if account else None
コード例 #2
0
ファイル: logic.py プロジェクト: Redneck-prm/the-tale
def get_account_id_by_email(email):
    account = AccountPrototype.get_by_email(normalize_email(email))
    return account.id if account else None
コード例 #3
0
ファイル: fields.py プロジェクト: Tiendil/dext
 def clean(self, value):
     email = super(EmailField, self).clean(value)
     return logic.normalize_email(email)