equal
deleted
inserted
replaced
40 __id__ = 'setprimaryemail' |
40 __id__ = 'setprimaryemail' |
41 __select__ = hook.Hook.__select__ & hook.match_rtype('use_email') |
41 __select__ = hook.Hook.__select__ & hook.match_rtype('use_email') |
42 category = 'email' |
42 category = 'email' |
43 events = ('after_add_relation',) |
43 events = ('after_add_relation',) |
44 |
44 |
45 def call(self, session, eidfrom, rtype, eidto): |
45 def __call__(self): |
46 entity = self.cw_req.entity_from_eid(self.eidfrom) |
46 entity = self.cw_req.entity_from_eid(self.eidfrom) |
47 if 'primary_email' in entity.e_schema.subject_relations(): |
47 if 'primary_email' in entity.e_schema.subject_relations(): |
48 SetPrimaryEmailRelationOp(self.cw_req, entity=entity, |
48 SetPrimaryEmailRelationOp(self.cw_req, entity=entity, |
49 email=self.cw_req.entity_from_eid(self.eidto)) |
49 email=self.cw_req.entity_from_eid(self.eidto)) |
50 |
50 |