[Catalyst-commits] r8576 - in trunk/Catalyst-Authentication-Store-DBIx-Class/lib/Catalyst/Authentication: Realm Store/DBIx

jayk at dev.catalyst.perl.org jayk at dev.catalyst.perl.org
Mon Oct 27 14:39:28 GMT 2008


Author: jayk
Date: 2008-10-27 14:39:28 +0000 (Mon, 27 Oct 2008)
New Revision: 8576

Modified:
   trunk/Catalyst-Authentication-Store-DBIx-Class/lib/Catalyst/Authentication/Realm/SimpleDB.pm
   trunk/Catalyst-Authentication-Store-DBIx-Class/lib/Catalyst/Authentication/Store/DBIx/Class.pm
Log:
oops.  Update code but not doc.  my bad.

Modified: trunk/Catalyst-Authentication-Store-DBIx-Class/lib/Catalyst/Authentication/Realm/SimpleDB.pm
===================================================================
--- trunk/Catalyst-Authentication-Store-DBIx-Class/lib/Catalyst/Authentication/Realm/SimpleDB.pm	2008-10-27 10:58:50 UTC (rev 8575)
+++ trunk/Catalyst-Authentication-Store-DBIx-Class/lib/Catalyst/Authentication/Realm/SimpleDB.pm	2008-10-27 14:39:28 UTC (rev 8576)
@@ -64,7 +64,7 @@
         {  
             default => {
                 class => 'SimpleDB',
-                user_class => 'MyApp::User'
+                user_model => 'MyApp::User'
             }
         }
 
@@ -89,7 +89,7 @@
 =over
 
 =item *
-Your user data is stored in a table that is accessible via $c->model('User');
+Your user data is stored in a table that is accessible via $c->model($cfg->{user_model});
 
 =item *
 Your passwords are stored in the 'password' field in your users table and are not encrypted.
@@ -104,8 +104,8 @@
 
 =back
 
-For the above usage, only one configuration option is necessary, 'user_class'.
-B<user_class> should contain the class name of your user class. See the
+For the above usage, only one configuration option is necessary, 'user_model'.
+B<user_model> should contain the class name of your user class. See the
 L</PREPARATION> section for info on how to set up your database for use with
 this module.
 
@@ -118,7 +118,7 @@
 
 =over 
 
-=item user_class
+=item user_model
 
 Contains the class name (as passed to $c->model() ) of the DBIx::Class schema
 to use as the source for user information.  This config item is B<REQUIRED>.
@@ -254,17 +254,5 @@
 
 =back
 
-=head1 WARNINGS
-
-...
-
-=head1 NOTES
-
-...
-
-=head1 BUGS
-
-What?
-
 =cut
 

Modified: trunk/Catalyst-Authentication-Store-DBIx-Class/lib/Catalyst/Authentication/Store/DBIx/Class.pm
===================================================================
--- trunk/Catalyst-Authentication-Store-DBIx-Class/lib/Catalyst/Authentication/Store/DBIx/Class.pm	2008-10-27 10:58:50 UTC (rev 8575)
+++ trunk/Catalyst-Authentication-Store-DBIx-Class/lib/Catalyst/Authentication/Store/DBIx/Class.pm	2008-10-27 14:39:28 UTC (rev 8576)
@@ -4,7 +4,7 @@
 use warnings;
 use base qw/Class::Accessor::Fast/;
 
-our $VERSION= "0.108";
+our $VERSION= "0.1081";
 
 
 BEGIN {
@@ -92,7 +92,7 @@
 
 =head1 VERSION
 
-This documentation refers to version 0.107.
+This documentation refers to version 0.108.
 
 =head1 SYNOPSIS
 




More information about the Catalyst-commits mailing list