This PR introduces support for the mutable_content property in the aioapns library, which was previously available only in apns2. The mutable_content property allows notifications to be modified by a Notification Service Extension before being delivered to the user.
This is related to #320 and #350.
Earlier support was available in the apns.py file, now added to apns_async.py.
mutable_content parameter is added to the following methods:
apns_send_message
apns_send_bulk_message
Both use a common method _create_notification_request_from_args which will take aps_kwargs.
It will be then added to the NotificationRequest as
This PR introduces support for the mutable_content property in the aioapns library, which was previously available only in apns2. The mutable_content property allows notifications to be modified by a Notification Service Extension before being delivered to the user.
This is related to #320 and #350. Earlier support was available in the
apns.py
file, now added toapns_async.py
.mutable_content
parameter is added to the following methods:_create_notification_request_from_args
which will takeaps_kwargs
.It will be then added to the NotificationRequest as
Please correct me if I made any misunderstanding. Thanks.