Skip to content

Commit 5e4a938

Browse files
karlwnwPr0Ger
authored andcommitted

File tree

2 files changed

+28
-6
lines changed

2 files changed

+28
-6
lines changed

apns2/payload.py

+13
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ def __init__(
99
title: Optional[str] = None,
1010
title_localized_key: Optional[str] = None,
1111
title_localized_args: Optional[List[str]] = None,
12+
subtitle: Optional[str] = None,
13+
subtitle_localized_key: Optional[str] = None,
14+
subtitle_localized_args: Optional[List[str]] = None,
1215
body: Optional[str] = None,
1316
body_localized_key: Optional[str] = None,
1417
body_localized_args: Optional[List[str]] = None,
@@ -19,6 +22,9 @@ def __init__(
1922
self.title = title
2023
self.title_localized_key = title_localized_key
2124
self.title_localized_args = title_localized_args
25+
self.subtitle = subtitle
26+
self.subtitle_localized_key = subtitle_localized_key
27+
self.subtitle_localized_args = subtitle_localized_args
2228
self.body = body
2329
self.body_localized_key = body_localized_key
2430
self.body_localized_args = body_localized_args
@@ -36,6 +42,13 @@ def dict(self) -> Dict[str, Any]:
3642
if self.title_localized_args:
3743
result['title-loc-args'] = self.title_localized_args
3844

45+
if self.subtitle:
46+
result['subtitle'] = self.subtitle
47+
if self.subtitle_localized_key:
48+
result['subtitle-loc-key'] = self.subtitle_localized_key
49+
if self.subtitle_localized_args:
50+
result['subtitle-loc-args'] = self.subtitle_localized_args
51+
3952
if self.body:
4053
result['body'] = self.body
4154
if self.body_localized_key:

test/test_payload.py

+15-6
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,11 @@
77
def payload_alert():
88
return PayloadAlert(
99
title='title',
10-
title_localized_key='loc_k',
11-
title_localized_args=['loc_a'],
10+
title_localized_key='title_loc_k',
11+
title_localized_args=['title_loc_a'],
12+
subtitle='subtitle',
13+
subtitle_localized_key='subtitle_loc_k',
14+
subtitle_localized_args=['subtitle_loc_a'],
1215
body='body',
1316
body_localized_key='body_loc_k',
1417
body_localized_args=['body_loc_a'],
@@ -21,8 +24,11 @@ def payload_alert():
2124
def test_payload_alert(payload_alert):
2225
assert payload_alert.dict() == {
2326
'title': 'title',
24-
'title-loc-key': 'loc_k',
25-
'title-loc-args': ['loc_a'],
27+
'title-loc-key': 'title_loc_k',
28+
'title-loc-args': ['title_loc_a'],
29+
'subtitle': 'subtitle',
30+
'subtitle-loc-key': 'subtitle_loc_k',
31+
'subtitle-loc-args': ['subtitle_loc_a'],
2632
'body': 'body',
2733
'loc-key': 'body_loc_k',
2834
'loc-args': ['body_loc_a'],
@@ -61,8 +67,11 @@ def test_payload_with_payload_alert(payload_alert):
6167
'aps': {
6268
'alert': {
6369
'title': 'title',
64-
'title-loc-key': 'loc_k',
65-
'title-loc-args': ['loc_a'],
70+
'title-loc-key': 'title_loc_k',
71+
'title-loc-args': ['title_loc_a'],
72+
'subtitle': 'subtitle',
73+
'subtitle-loc-key': 'subtitle_loc_k',
74+
'subtitle-loc-args': ['subtitle_loc_a'],
6675
'body': 'body',
6776
'loc-key': 'body_loc_k',
6877
'loc-args': ['body_loc_a'],

0 commit comments

Comments
 (0)