Replies: 1 comment
-
copy pasted the same question on chatGPT and it's solution worked!: |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
From the Flow Protocol documentary i know i can control the flow of 2 requests in such a way if i want to run the
http(2)
request only ifhttp(1)
requestmatcher
returnedtrue
. But how do i control the flow to do the opposite i.e. ifhttp(1)
matcher wastrue
do not runhttp(2)
. Below is my codeendpoints
/
/wp-admin
so basically i only want to request
wp-admin
if/
matcher fails i.e. whenwordpress
is not found in it's body. I looked everywhere in the flow protcol documentary but was unable to find this feature, I would be grateful if anyone could help me with it. Many Thanks!Beta Was this translation helpful? Give feedback.
All reactions