-
-
Notifications
You must be signed in to change notification settings - Fork 350
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
conversation is not invoked on "setup meeting" #163
Comments
The main reason the problem occurred since the condition is always true, and the type of event would be set as So, I change the eventType in SlackBot.java . I am not sure if my method towards this issue is proper. The code of the conversation about setup meeting is like the following:
Hope my code can satisfy your expectation. |
Thanks for your efforts, I am trying to use the start conversation , when we type "start meeting" the
@controller(pattern = "(setup meeting)", next = "confirmTiming")
public void setupMeeting(WebSocketSession session, Event event) { is not invoked .
But
@controller(events = {EventType.DIRECT_MENTION, EventType.DIRECT_MESSAGE})
public void onReceiveDM(WebSocketSession session, Event event) {
is invoked.
Could you pease help.
Thanks in advance
The text was updated successfully, but these errors were encountered: