fnp
/
wolnelektury.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Fix for expired tokens.
[wolnelektury.git]
/
src
/
club
/
civicrm.py
diff --git
a/src/club/civicrm.py
b/src/club/civicrm.py
index
c44f6f8
..
ac3de70
100644
(file)
--- a/
src/club/civicrm.py
+++ b/
src/club/civicrm.py
@@
-9,8
+9,8
@@
import yaml
class CiviCRM:
def __init__(self, base, key):
self.base = base
class CiviCRM:
def __init__(self, base, key):
self.base = base
- self.api_base = base + 'civicrm/ajax/api4/'
self.key = key
self.key = key
+ self.api_base = (base or '') + 'civicrm/ajax/api4/'
self.enabled = bool(self.base and self.key)
def request(self, resource, method, params):
self.enabled = bool(self.base and self.key)
def request(self, resource, method, params):
@@
-89,6
+89,9
@@
class CiviCRM:
def report_activity(self, email, tpwl_key, key, name, datetime, details):
def report_activity(self, email, tpwl_key, key, name, datetime, details):
+ if not self.enabled:
+ return
+
contact_id = self.create_or_update_contact(email, tpwl_key)
activity_id = self.get_activity_id(key)
contact_id = self.create_or_update_contact(email, tpwl_key)
activity_id = self.get_activity_id(key)