Ejemplo n.º 1
0
def save_idea_by_json(json_data, user):
    idea = Idea()
    idea.title = json_data['title']
    idea.description = json_data['description']
    idea.category = json_data['category']
    idea.tags = json_data['tags']
    idea.author = user
    return save_idea(idea)