Skip to content

Commit 2be401b

Browse files
committed
Merge branch '7.4' into 8.0
* 7.4: [Security] Remove is_anonymous expesssion language function
2 parents c624aa1 + be7d7ed commit 2be401b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

workflow.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -826,7 +826,7 @@ transition. The value of this option is any valid expression created with the
826826
from: draft
827827
to: reviewed
828828
publish:
829-
# or "is_anonymous", "is_remember_me", "is_fully_authenticated", "is_granted", "is_valid"
829+
# or "is_remember_me", "is_fully_authenticated", "is_granted", "is_valid"
830830
guard: "is_authenticated"
831831
from: reviewed
832832
to: published
@@ -861,7 +861,7 @@ transition. The value of this option is any valid expression created with the
861861
</framework:transition>
862862
863863
<framework:transition name="publish">
864-
<!-- or "is_anonymous", "is_remember_me", "is_fully_authenticated", "is_granted" -->
864+
<!-- or "is_remember_me", "is_fully_authenticated", "is_granted" -->
865865
<framework:guard>is_authenticated</framework:guard>
866866
<framework:from>reviewed</framework:from>
867867
<framework:to>published</framework:to>
@@ -897,7 +897,7 @@ transition. The value of this option is any valid expression created with the
897897
898898
$blogPublishing->transition()
899899
->name('publish')
900-
// or "is_anonymous", "is_remember_me", "is_fully_authenticated", "is_granted"
900+
// or "is_remember_me", "is_fully_authenticated", "is_granted"
901901
->guard('is_authenticated')
902902
->from(['reviewed'])
903903
->to(['published']);

0 commit comments

Comments
 (0)