Major modifications
[catagits/Catalyst-Plugin-Authentication.git] / lib / Catalyst / Plugin / Authentication / Store.pod
index 7d4a563..4d31715 100644 (file)
@@ -5,6 +5,10 @@ Catalyst::Plugin::Authentication::Store - All about authentication stores
 
 =head1 MULTIPLE BACKENDS
 
+B<NOTE> This is documentation for the old store system. This is not how the new realm-based stores
+work. Nobody has managed to rewrite this part of the documentation yet.  
+See L<Catalyst::Plugin::Authentication::Internals> instead.
+
 A key issue to understand about authentication stores is that there are
 potentially many of them. Each one is registered into the application, and has
 a name.
@@ -20,7 +24,7 @@ When you use a plugin, like
     /;
 
 the Store plugins typically only act at setup time. They rarely do more than
-check out the configuration, and register e.g. Store::Foo::Backend, and set it
+check out the configuration, and register e.g. Store::Foo, and set it
 as the default store.
 
     __PACKAGE__->default_auth_store( $store );