Example #1
0
def check_existing_credentials(acnt_username):
    """
    Function to check existing credential
    ----------
    name
    Returns
    -------
    user
    """
    return Credential.find_by_acnt_username(acnt_username)
Example #2
0
def find_credential(acnt_username):
    """
    Function to find credential
    """
    return Credential.find_by_acnt_username(acnt_username)