-
Notifications
You must be signed in to change notification settings - Fork 332
feat(fcm): Added support for sending an image URL in notifications #332
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Any reviewer? @hiranya911 |
Hi @cchamm. Currently swamped with a couple of pending releases. Will take a look at this shortly. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks pretty good. Just need one addition.
""" | ||
|
||
def __init__(self, title=None, body=None, icon=None, color=None, sound=None, tag=None, | ||
click_action=None, body_loc_key=None, body_loc_args=None, title_loc_key=None, | ||
title_loc_args=None, channel_id=None): | ||
title_loc_args=None, channel_id=None, image=None): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Need the same added to APNSFCMOptions
. See firebase/firebase-admin-java#298
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. Thanks.
Fixes #329