Roundup Tracker - Issues

Message1348

Author pohly
Recipients
Date 2004-07-07.13:54:36
Message-id
In-reply-to
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?
History
Date User Action Args
2009-02-03 14:20:50adminlinkissue986601 messages
2009-02-03 14:20:50admincreate