Default webchat for every new user
# 🤝help
a
How can every new user receive a default bot in a webchat? Above all, the tables that are changed during the conversation should be the same for every new chat. Background information: At the moment I have a table with questions and answers. If a question is answered correctly, a boolean is set to true and the question is considered answered. If several users write with the bot at the same time, not all of them have access to all questions. Only the questions that have not yet been answered remain. How can I work around this?
s
Hi, Try reading the table to a user variable (scope: user) and change the status in a variable. Later, you can update the table if needed. The second option would be to create a table with question status for each user.
a
Second Option was my go to, thank you!
10 Views