POD update for auto_create change auto_create_only_if_can
Rob Brown [Tue, 22 May 2012 18:44:03 +0000 (19:44 +0100)]
lib/Catalyst/Authentication/Store/DBIx/Class/User.pm

index ed51552..06af8ee 100644 (file)
@@ -352,8 +352,10 @@ Synonym for get_object
 
 This is called when the auto_create_user option is turned on in
 Catalyst::Plugin::Authentication and a user matching the authinfo provided is not found.
-By default, this will call the C<auto_create()> method of the resultset associated
-with this object. It is up to you to implement that method.
+By default, and if available, this will call the C<auto_create()> method of the resultset associated
+with this object, otherwise it will call C<create()> on it.
+
+It is up to you to implement the C<auto_create> method if required.
 
 =head2 auto_update