Skip to content

Commit 60d1125

Browse files
rbflurryfabaff
authored andcommitted
change uppercase to lowercase. (home-assistant#3426)
This was applied as a part of home-assistant/core#9427
1 parent 111b082 commit 60d1125

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

source/_docs/ecosystem/ios/notifications/actions.markdown

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ When sending a notification:
5050
## {% linkable_title Category parameters %}
5151

5252
- **name** (*Required*): A friendly name for this category.
53-
- **identifier** (*Required*): A unique identifier for the category. Must be uppercase and have no special characters or spaces.
53+
- **identifier** (*Required*): A unique identifier for the category. Must be lowercase and have no special characters or spaces.
5454
- **action** (*Required*): A list of actions.
5555

5656
## {% linkable_title Action parameters %}
@@ -71,7 +71,7 @@ ios:
7171
push:
7272
categories:
7373
- name: Alarm
74-
identifier: 'ALARM'
74+
identifier: 'alarm'
7575
actions:
7676
- identifier: 'SOUND_ALARM'
7777
title: 'Sound Alarm'
@@ -105,7 +105,7 @@ automation:
105105
push:
106106
badge: 5
107107
sound: <SOUND FILE HERE>
108-
category: "ALARM" # Needs to match the top level identifier you used in the ios configuration
108+
category: "alarm" # Needs to match the top level identifier you used in the ios configuration
109109
action_data: # Anything passed in action_data will get echoed back to Home Assistant.
110110
entity_id: light.test
111111
my_custom_data: foo_bar

0 commit comments

Comments
 (0)