CREX-5826 - Replace text (#1153)

This commit is contained in:
Juan Pablo Risso
2016-08-25 20:03:44 -04:00
committed by GitHub
parent 655e756b1b
commit 97e0e9d0f8

View File

@@ -48,9 +48,9 @@ preferences {
} }
section("Via a push notification and/or an SMS message"){ section("Via a push notification and/or an SMS message"){
input("recipients", "contact", title: "Send notifications to") { input("recipients", "contact", title: "Send notifications to") {
input "phone", "phone", title: "Phone Number (for SMS, optional)", required: false input "phone", "phone", title: "Enter a phone number to get SMS", required: false
paragraph "If outside the US please make sure to enter the proper country code" paragraph "If outside the US please make sure to enter the proper country code"
input "pushAndPhone", "enum", title: "Both Push and SMS?", required: false, options: ["Yes", "No"] input "pushAndPhone", "enum", title: "Notify me via Push Notification", required: false, options: ["Yes", "No"]
} }
} }
section("Minimum time between messages (optional, defaults to every message)") { section("Minimum time between messages (optional, defaults to every message)") {
@@ -111,19 +111,17 @@ private sendMessage(evt) {
if (location.contactBookEnabled) { if (location.contactBookEnabled) {
sendNotificationToContacts(msg, recipients, options) sendNotificationToContacts(msg, recipients, options)
} else { } else {
if (!phone || pushAndPhone != 'No') { if (pushAndPhone != 'No') {
log.debug 'sending push' log.debug 'sending push'
options.method = 'push' options.method = 'push'
//sendPush(msg) sendNotification(msg, options)
} }
if (phone) { if (phone) {
options.phone = phone options.phone = phone
log.debug 'sending SMS' log.debug 'sending SMS'
//sendSms(phone, msg) sendNotification(msg, options)
} }
sendNotification(msg, options)
} }
if (frequency) { if (frequency) {
state[evt.deviceId] = now() state[evt.deviceId] = now()
} }