I'm attempting to trigger a Modal View using Bolt by listening for the reaction_added
event.
Something like
@app.event("reaction_added")
def react(event):
# return a modal view based on emoji reaction added
but the response on a reaction_added
event doesn't seem to come with a trigger_id
which is required for the Modal.
Is there a workaround for getting a trigger_id
to get a Modal view to be returned on an emoji reaction?