diff roundup/cgi/actions.py @ 7179:804cc66692ac

Add comment. lookup on a username doesn't return retired users.
author John Rouillard <rouilj@ieee.org>
date Sun, 26 Feb 2023 12:01:09 -0500
parents db06d4aeb978
children 273c8c2b5042
line wrap: on
line diff
--- a/roundup/cgi/actions.py	Sun Feb 26 12:00:35 2023 -0500
+++ b/roundup/cgi/actions.py	Sun Feb 26 12:01:09 2023 -0500
@@ -1373,6 +1373,7 @@
     def verifyLogin(self, username, password):
         # make sure the user exists
         try:
+            # Note: lookup only searches non-retired items.
             self.client.userid = self.db.user.lookup(username)
         except KeyError:
             # Perform password check against anonymous user.

Roundup Issue Tracker: http://roundup-tracker.org/