diff options
author | Jeremy Benoist <jeremy.benoist@gmail.com> | 2016-12-03 11:10:39 +0100 |
---|---|---|
committer | Jeremy Benoist <jeremy.benoist@gmail.com> | 2016-12-03 11:10:39 +0100 |
commit | 5aa0294cca8115ce9a9401f9587d07d7ee37b769 (patch) | |
tree | 81995ac5663a2f46d3b689910abb9b210726cbad /src | |
parent | 1093e979ff49f9072c30d1d576c6adf1f8e76bdf (diff) | |
download | wallabag-5aa0294cca8115ce9a9401f9587d07d7ee37b769.tar.gz wallabag-5aa0294cca8115ce9a9401f9587d07d7ee37b769.tar.zst wallabag-5aa0294cca8115ce9a9401f9587d07d7ee37b769.zip |
Limit rule to 255
To avoid database error
Diffstat (limited to 'src')
-rw-r--r-- | src/Wallabag/CoreBundle/Entity/TaggingRule.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Wallabag/CoreBundle/Entity/TaggingRule.php b/src/Wallabag/CoreBundle/Entity/TaggingRule.php index 28914cc1..72651b19 100644 --- a/src/Wallabag/CoreBundle/Entity/TaggingRule.php +++ b/src/Wallabag/CoreBundle/Entity/TaggingRule.php | |||
@@ -28,6 +28,7 @@ class TaggingRule | |||
28 | * @var string | 28 | * @var string |
29 | * | 29 | * |
30 | * @Assert\NotBlank() | 30 | * @Assert\NotBlank() |
31 | * @Assert\Length(max=255) | ||
31 | * @RulerZAssert\ValidRule( | 32 | * @RulerZAssert\ValidRule( |
32 | * allowed_variables={"title", "url", "isArchived", "isStared", "content", "language", "mimetype", "readingTime", "domainName"}, | 33 | * allowed_variables={"title", "url", "isArchived", "isStared", "content", "language", "mimetype", "readingTime", "domainName"}, |
33 | * allowed_operators={">", "<", ">=", "<=", "=", "is", "!=", "and", "not", "or", "matches"} | 34 | * allowed_operators={">", "<", ">=", "<=", "=", "is", "!=", "and", "not", "or", "matches"} |