Example #1
0
 def interactive_participants(self):
     if self._interactive_participants is None:
         self._interactive_participants = get_interactive_participants(
             self.domain)
     return self._interactive_participants
Example #2
0
 def interactive_participants(self):
     if self._interactive_participants is None:
         self._interactive_participants = get_interactive_participants(self.domain)
     return self._interactive_participants
Example #3
0
 def options(self):
     cases = get_interactive_participants(self.domain)
     return [(case.get_id, case.name) for case in cases]
Example #4
0
 def options(self):
     cases = get_interactive_participants(self.domain)
     return [(case.get_id, case.name) for case in cases]