summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordakkar <dakkar@thenautilus.net>2012-01-13 15:48:02 +0000
committerdakkar <dakkar@thenautilus.net>2012-01-13 15:48:02 +0000
commit83d3aea34305bcca39d6c3233bb7362e41035604 (patch)
tree60edef5357f8ea49c8e6a06202b2f0ea190b3e0f
parentmake SSL less fussy (diff)
downloadDeWeave-83d3aea34305bcca39d6c3233bb7362e41035604.tar.gz
DeWeave-83d3aea34305bcca39d6c3233bb7362e41035604.tar.bz2
DeWeave-83d3aea34305bcca39d6c3233bb7362e41035604.zip
apparently some required fields aren't
-rw-r--r--lib/DeWeave/BO/Bookmark/Query.pm6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/DeWeave/BO/Bookmark/Query.pm b/lib/DeWeave/BO/Bookmark/Query.pm
index 356384c..d609031 100644
--- a/lib/DeWeave/BO/Bookmark/Query.pm
+++ b/lib/DeWeave/BO/Bookmark/Query.pm
@@ -7,10 +7,14 @@ extends 'DeWeave::BO::Bookmark::Bookmark';
has folderName => (
isa => Str,
- required => 1,
+ required => 0,
is => 'ro',
);
+has '+title' => (
+ required => 0,
+);
+
has queryId => (
isa => Str,
required => 0,