Hello,
I am currently using the simple password authentnication:
__PACKAGE__->config->{'Plugin::Authentication'} = {
        default => {
            class           => 'DBIx::SimpleDB', #
            user_model      => 'DB::User',
            password_type   => 'self_check',
        },
};

with $c->authenticate({ username => [..], password => [...] });

I would like to extend my autentication to accept other fields:
with $c->authenticate({ fileld1 => [..], field2 => [...], fieldd => [...] });


Do I have to create my own Catalyst::Authentication::Credential plugin?

Thank you
Julien

_______________________________________________
List: [email protected]
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/[email protected]/
Dev site: http://dev.catalyst.perl.org/

Reply via email to