Ejemplo n.º 1
0
def postEmail():
    """Inserts an email into the list. request.args: 
      email: mandatory
    """
    m = HomeModel()
    return (jsonify({"email": m.newEmail(request.args["email"])}))
Ejemplo n.º 2
0
def postEmail():
    """Inserts an email into the list. request.args: 
      email: mandatory
    """
    m = HomeModel()
    return(jsonify({"email": m.newEmail(request.args["email"])}))