Fix ordering in perl subscription_list
[blerg.git] / lib / perl / Blerg-Database / lib / Blerg / Database.pm
index b75b3f7..8d3789a 100644 (file)
@@ -123,7 +123,7 @@ sub get_subscription_mark {
 sub subscription_list {
     my ($obj) = @_;
     $obj->_ensure_pointer;
-    return Blerg::Database::_subscription_list($obj->{name}, 0, 1);
+    return Blerg::Database::_subscription_list($obj->{name}, 0, -1);
 }
 
 sub mute {
@@ -244,6 +244,30 @@ Validates that C<name> is a valid tag name.
 
 Validates that C<name> is a valid username.
 
+=item configuration()
+
+Returns a hashref containing runtime configuration information.  Contains these fields:
+
+=over
+
+=item base_path
+
+The base path to the BlĂ«rg database
+
+=item data_path
+
+The path under base_path for account data
+
+=item hash_tags_path
+
+The path under base_path for hashtag data
+
+=item ref_tags_path
+
+The path under base_path for mention data
+
+=back
+
 =back
 
 =head2 AUTHENTICATION