allow custom intent in broadcast action without JSON

This commit is contained in:
Hunter Kehoe 2022-06-22 15:29:16 -06:00
parent 3334d84861
commit ee38d76bc2
2 changed files with 10 additions and 0 deletions

View file

@ -186,6 +186,8 @@ func populateAction(newAction *action, section int, key, value string) error {
newAction.Method = value
case "body":
newAction.Body = value
case "intent":
newAction.Intent = value
default:
return fmt.Errorf("key '%s' unknown", key)
}