Beispiel #1
0
 def get(self):
     participants = Participant.get_all()
     participant_list = []
     for participant in participants:
         participant_list.append(participant.to_json_dict('full_name', 'email',
             'is_starred', 'is_active', 'is_deleted', 'when_created'))
     response = json.dumps(participant_list)
     self.response.out.write(response)