hooks/email.py
changeset 2843 3f5194ef620d
parent 2841 107ba1c45227
child 2847 c2ee28f4d4b1
equal deleted inserted replaced
2842:0477fff5f897 2843:3f5194ef620d
    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