mostly doc fixes and a little Minimal Bug fix involving the hash passed in.
[catagits/Catalyst-Plugin-Authentication.git] / lib / Catalyst / Plugin / Authentication / Store / Minimal / Backend.pm
index 2cf5c1f..79d0197 100644 (file)
@@ -11,7 +11,7 @@ use Scalar::Util ();
 sub new {
     my ( $class, $config, $app) = @_;
 
-    bless { hash => $config }, $class;
+    bless { hash => $config->{'users'} }, $class;
 }
 
 sub from_session {