✨ Add persistent interaction routing support to commands (Fixes #79) #80
+195
−26
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR adds persistent interaction routing allowing for easy persistence and handling of interactions such as button clicks.
It is based on Laravel routing and allows for passing parameters such as
{id}
and making them optional using a?
like{id?}
. All parameters should be passed using:
instead of/
.All routes are prefixed with the command name behind the scenes to remain unique.
It is hopefully pretty straight forward to use, see the following example: