Added 'self' method to ResultSet
Matt S Trout [Thu, 19 Jan 2006 17:10:41 +0000 (17:10 +0000)]
lib/DBIx/Class/ResultSet.pm

index ae6fb3e..53e06ef 100644 (file)
@@ -481,6 +481,16 @@ sub find_or_create {
   return defined($exists) ? $exists : $self->create($hash);
 }
 
+=head2 self
+
+  my $rs = $rs->self;
+
+Just returns the resultset. Useful for Template Toolkit.
+
+=cut
+
+sub self { shift; }
+
 =head1 ATTRIBUTES
 
 The resultset takes various attributes that modify its behavior.