Issue 986601
Created on 2004-07-07 13:54 by pohly, last changed 2004-07-19 01:46 by richard.
msg1348 |
Author: [hidden] (pohly) |
Date: 2004-07-07 13:54 |
|
doc/customizing.txt says in section
Using an external password validation source
that one should hook its own password authentication
into roundup like this:
class Client(client.Client):
actions = client.Client.actions + (
('login', ExternalPasswordLoginAction)
)
I tried that and found that my own code wasn't
invoked at all. After changing instance.py as follows
it worked:
actions = ( ( 'login', ExternalPasswordLoginAction
), ) + \
client.Client.actions
Is the documentation perhaps outdated here?
|
msg1349 |
Author: [hidden] (richard) |
Date: 2004-07-19 01:46 |
|
Logged In: YES
user_id=6405
Yes, your action needs to be first. I'll update the docs, thanks!
|
|
Date |
User |
Action |
Args |
2004-07-07 13:54:36 | pohly | create | |
|