Subject: | Configuration problem |
I'm using Maypole::Plugin::Authentication::Abstract for my authentication purposes.
This doesn't require the configuration of a user class in the module, as it deals with it in the following way:
my $user_class = $r->config->{auth}->{user_class}
|| ( ( ref $r ) . '::User' );
whereas M::P::A just has:
my $cdbi_class = $r->config->auth->{user_class};
Should M::P::A be providing a sensible default as M::P::A::A ?
Cheers