def mozilla_email_was_employed()

in foundation_security_advisories/update_hof.py [0:0]


def mozilla_email_was_employed(email, date):
    pre_employment_data = {
        'jdemooij@mozilla.com' : datetime(year=2011, month=11, day=1),
        'choller@mozilla.com' : datetime(year=2011, month=8, day=1)
    }
    if email not in pre_employment_data:
        return True
    return date > pre_employment_data[email]