From 60d1125e5540a3ea95d99b3c5fb0043effc7030a Mon Sep 17 00:00:00 2001 From: rbflurry Date: Sun, 24 Sep 2017 04:18:44 -0400 Subject: [PATCH] change uppercase to lowercase. (#3426) This was applied as a part of https://github.com/home-assistant/home-assistant/pull/9427 --- source/_docs/ecosystem/ios/notifications/actions.markdown | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/_docs/ecosystem/ios/notifications/actions.markdown b/source/_docs/ecosystem/ios/notifications/actions.markdown index 5e2f49f3e45..a8510f52b09 100644 --- a/source/_docs/ecosystem/ios/notifications/actions.markdown +++ b/source/_docs/ecosystem/ios/notifications/actions.markdown @@ -50,7 +50,7 @@ When sending a notification: ## {% linkable_title Category parameters %} - **name** (*Required*): A friendly name for this category. -- **identifier** (*Required*): A unique identifier for the category. Must be uppercase and have no special characters or spaces. +- **identifier** (*Required*): A unique identifier for the category. Must be lowercase and have no special characters or spaces. - **action** (*Required*): A list of actions. ## {% linkable_title Action parameters %} @@ -71,7 +71,7 @@ ios: push: categories: - name: Alarm - identifier: 'ALARM' + identifier: 'alarm' actions: - identifier: 'SOUND_ALARM' title: 'Sound Alarm' @@ -105,7 +105,7 @@ automation: push: badge: 5 sound: - category: "ALARM" # Needs to match the top level identifier you used in the ios configuration + category: "alarm" # Needs to match the top level identifier you used in the ios configuration action_data: # Anything passed in action_data will get echoed back to Home Assistant. entity_id: light.test my_custom_data: foo_bar