From: Matt S Trout Date: Tue, 17 Jul 2007 16:58:27 +0000 (+0000) Subject: minor updates X-Git-Tag: v0.10009_01~74 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=4b69b736d1545152c823a97885b15cbe457a80f0;p=catagits%2FCatalyst-Plugin-Authentication.git minor updates r34289@cain (orig r5694): jayk | 2006-12-05 18:22:25 +0000 --- diff --git a/lib/Catalyst/Plugin/Authentication/Internals.pod b/lib/Catalyst/Plugin/Authentication/Internals.pod index d5f6a14..990050d 100644 --- a/lib/Catalyst/Plugin/Authentication/Internals.pod +++ b/lib/Catalyst/Plugin/Authentication/Internals.pod @@ -111,7 +111,7 @@ Catalyst application. been loaded, so your new() method must not rely on any of those being present. If any of this is required for your store to function, you should defer that part of initialization until the first method call. - + The C method should return a blessed reference to your store object. =item find_user( $authinfo, $c ) @@ -185,8 +185,8 @@ L plugin are below. Note that of these, only get_object is strictly required, as the L base class contains reasonable implementations of the rest. If you do choose -to implement only the C routine, please read the base class -documentation so that you fully understand how the other routines will be +to implement only the C routine, please read the base class code +and documentation so that you fully understand how the other routines will be implemented for you. Also, your user object can implement whatever additional methods you require @@ -239,4 +239,9 @@ reasonable to return C<$self>. =back +=head1 WRITING A CREDENTIAL + +There are two parts to an authentication store, the backend and the user object. + +=head2 STORAGE BACKEND ... Documentation fairy fell asleep here.