aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Entity/TaggingRule.php
diff options
context:
space:
mode:
authorKévin Gomez <contact@kevingomez.fr>2015-11-13 14:37:58 +0100
committerKévin Gomez <contact@kevingomez.fr>2015-11-13 14:37:58 +0100
commita6e27f74663637ecc4a4cf84028e6b5a3556a6ff (patch)
tree98e0ef2d9d2d11283a08ec0dc0af0f7c6c2e4887 /src/Wallabag/CoreBundle/Entity/TaggingRule.php
parent5c514b0be320d683c22a3044d875a5e4b5fe6ce0 (diff)
downloadwallabag-a6e27f74663637ecc4a4cf84028e6b5a3556a6ff.tar.gz
wallabag-a6e27f74663637ecc4a4cf84028e6b5a3556a6ff.tar.zst
wallabag-a6e27f74663637ecc4a4cf84028e6b5a3556a6ff.zip
Add matches operator
Diffstat (limited to 'src/Wallabag/CoreBundle/Entity/TaggingRule.php')
-rw-r--r--src/Wallabag/CoreBundle/Entity/TaggingRule.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Wallabag/CoreBundle/Entity/TaggingRule.php b/src/Wallabag/CoreBundle/Entity/TaggingRule.php
index 851af932..4eab590f 100644
--- a/src/Wallabag/CoreBundle/Entity/TaggingRule.php
+++ b/src/Wallabag/CoreBundle/Entity/TaggingRule.php
@@ -30,7 +30,7 @@ class TaggingRule
30 * @Assert\NotBlank() 30 * @Assert\NotBlank()
31 * @RulerZAssert\ValidRule( 31 * @RulerZAssert\ValidRule(
32 * allowed_variables={"title", "url", "isArchived", "isStared", "content", "language", "mimetype", "readingTime", "domainName"}, 32 * allowed_variables={"title", "url", "isArchived", "isStared", "content", "language", "mimetype", "readingTime", "domainName"},
33 * allowed_operators={">", "<", ">=", "<=", "=", "is", "!=", "and", "not", "or"} 33 * allowed_operators={">", "<", ">=", "<=", "=", "is", "!=", "and", "not", "or", "matches"}
34 * ) 34 * )
35 * @ORM\Column(name="rule", type="string", nullable=false) 35 * @ORM\Column(name="rule", type="string", nullable=false)
36 */ 36 */