-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #65 from mantro/feature/dispatch_actions
Dispatch actions
- Loading branch information
Showing
3 changed files
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
using System.Collections.Generic; | ||
|
||
namespace SlackNet.Blocks | ||
{ | ||
/// <summary> | ||
/// Determines when a<see cref="PlainTextInput"/> element will return a <see cref="BlockAction"/> interaction payload. | ||
/// </summary> | ||
public class DispatchActionConfig | ||
{ | ||
/// <summary> | ||
/// An array of <see cref="InteractionType"/> that you would like to receive a <see cref="BlockAction"/> payload for. | ||
/// </summary> | ||
[IgnoreIfEmpty] | ||
public IList<InteractionType> TriggerActionsOn { get; set; } = new List<InteractionType>(); | ||
} | ||
|
||
public enum InteractionType | ||
{ | ||
OnEnterPressed, | ||
OnCharacterEntered | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters