Please Log in or Create an account to join the conversation.
The users parameter doesn't apply to Internal Users or Internal General usages. It is only applied to the direct execution of an auto action. If you set Triggers to None you should see the URL to directly execute the auto action under the same Global tab. That you can add &users=COMMA_LIST_OF_USER_IDS to (e.g. &users=70 or &users=70,71,72).1. When I trigger the User External trigger, and append "&user=70" to the long URL, I thought it would just run the action on user 70, but it seems to run on all of my users anyway. The only way I have found to actually limit it to take Action on user 70 is to set the condition as: [user_id] equals [get_users]. It seems to work, and the action successfully appends the user id of #me (the viewer) into a field in user 70 (so I can then see a list that filters using that - the whole goal here)
The only access checks applied are the Access parameter and the access to the CB Auto Action plugin it self which should be set to Public in CB > Plugin Management already. The Access parameter of the CB Auto Action is applied to the User of the action which isn't always the person who is executing the action. Your issue is likely just due to using &user instead of &users.2. The thing works if I am logged in as a super administrator. I get access issues when I am someone else. I've tried to set access to 1) Everyone 2) the target user's one, 3) the viewers one 5) both, but nothing works. Could this be something to do with permissions? I have some new user groups set up after I installed CB. Any guidance would be very welcome.
Yes, you can actually chain auto actions. Create a Redirect auto action acting on the autoactions_onAction trigger. Next under Conditions use the below to limit its execution to be after your previous auto action.3. Lastly, after the hyperlink containing the cbautoaction link has been clicked, is there a way to redirect the user back to another page. I am left on a blank page.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
This is complicated to do with SQL alone. Check out the below for some examples of how you can remove a value from a CSV stored string.2. Remove the active ID from that same field of the multiple CSV IDs. (They start with a comma: ",52,43,58,120,...)
It's likely using you, the viewing user, as the User of the auto action. You'd need the displayed users user id in the action URL for it to use them as the User for the auto action. If the URL is being made accessible on their profile view Custom HTML for example you should be able to just add &users=[user_id] to it.By the way, even when I replace the `,[cb:userdata field="Id" user="#me" /],` with a simple `,43,` it doesnt work.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.