Hi,
I want to subclass Catalyst::Authentication::Store::LDAP::User as you
have described, but I have encountered something that might be a bug.
This is the fix I am using to ensure I always get the catalyst-app, to
my new function:
--- /Library/Perl/5.8.8/Catalyst/Authentication/Store/LDAP/Backend.pm
2010-04-03 04:56:34.000000000 +0200
+++ lib/Catalyst/Authentication/Store/LDAP/Backend.pm 2010-04-27
20:05:53.000000000 +0200
@@ -437,7 +437,7 @@
sub from_session {
my ( $self, $c, $id ) = @_;
- $self->get_user($id);
+ $self->get_user($id, $c);
}
1;