fnp
/
wolnelektury.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Minor css fixes.
[wolnelektury.git]
/
src
/
push
/
utils.py
diff --git
a/src/push/utils.py
b/src/push/utils.py
index
98f0359
..
6845315
100644
(file)
--- a/
src/push/utils.py
+++ b/
src/push/utils.py
@@
-6,15
+6,24
@@
import firebase_admin
from firebase_admin import credentials, messaging
from django.conf import settings
from firebase_admin import credentials, messaging
from django.conf import settings
-cred = credentials.Certificate(settings.FCM_PRIVATE_KEY_PATH)
-firebase_admin.initialize_app(cred)
+
+cred = None
+if hasattr(settings, 'FCM_PRIVATE_KEY_PATH'):
+ cred = credentials.Certificate(settings.FCM_PRIVATE_KEY_PATH)
+ firebase_admin.initialize_app(cred)
TOPIC = 'wolnelektury'
def send_fcm_push(title, body, image_url=None):
TOPIC = 'wolnelektury'
def send_fcm_push(title, body, image_url=None):
+ if cred is None:
+ return
# See documentation on defining a message payload.
data = {}
# See documentation on defining a message payload.
data = {}
+ # data = {
+ # 'title': title,
+ # 'body': body,
+ # }
if image_url:
data['imageUrl'] = image_url
message = messaging.Message(
if image_url:
data['imageUrl'] = image_url
message = messaging.Message(