From 693e8354eb08485fd3ef2342ad6d5c1b13b39ff7 Mon Sep 17 00:00:00 2001 From: Tony Mack Date: Fri, 5 Jan 2007 15:56:16 +0000 Subject: [PATCH] - added 'verification_key', 'verification_expires' to Person.fields --- PLC/Persons.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PLC/Persons.py b/PLC/Persons.py index 3d05fbc..efff5c9 100644 --- a/PLC/Persons.py +++ b/PLC/Persons.py @@ -4,7 +4,7 @@ # Mark Huang # Copyright (C) 2006 The Trustees of Princeton University # -# $Id: Persons.py,v 1.24 2006/12/05 16:45:03 thierry Exp $ +# $Id: Persons.py,v 1.25 2007/01/05 15:54:39 tmack Exp $ # from types import StringTypes @@ -44,7 +44,7 @@ class Person(Row): 'enabled': Parameter(bool, "Has been enabled"), 'password': Parameter(str, "Account password in crypt() form", max = 254), 'verification_key': Parameter(str, "Reset password key", max = 254), - 'verification_expires': Parameter(str, "Date/Time verification_key expires", max = 254), + 'verification_expires': Parameter(str, "Date/Time when verification_key expires", max = 254), 'last_updated': Parameter(int, "Date and time of last update", ro = True), 'date_created': Parameter(int, "Date and time when account was created", ro = True), 'role_ids': Parameter([int], "List of role identifiers"), -- 2.43.0