Hi All,
I have this part with the automation actions and the testing work good.
My only questions what can you do with the textInputButtonTitle
and textInputPlaceholder
push:
categories:
- name: Alarm
identifier: 'alarm'
actions:
- identifier: 'SOUND_ALARM'
title: 'Sound Alarm'
activationMode: 'background'
authenticationRequired: true
destructive: true
behavior: 'default'
- identifier: 'SILENCE_ALARM'
title: 'Silence Alarm'
activationMode: 'background'
authenticationRequired: true
destructive: false
behavior: 'textInput'
textInputButtonTitle: 'Silencio!'
textInputPlaceholder: 'Placeholder'
I can enter something but then??? Can I use the textInputPlaceholder into my other automation actions that is triggers by my action? Something like
- service: notify.mobile_app_peter_iphone
data:
title: "{{ textInputButtonTitle }}"
message: "{{ textInputPlaceholder }}"