Ejemplo n.º 1
0
    def create_new_choice_for_poll_from_post_data(cls, poll, post_data):
        choice = Choice.create(
            choice=post_data['choice'],
            poll=poll
        )

        return choice