def add_favorite(user, item, id=None): """Link the favorite item to user.""" return Favorite.create( uuid=id or uuid.uuid4(), item=item, user=user, )