|
@@ -21,12 +21,12 @@ def get_video_list(
|
|
|
Retrieve items.
|
|
|
"""
|
|
|
if crud.user.is_superuser(current_user):
|
|
|
- items = crud.item.get_multi(db, skip=skip, limit=limit)
|
|
|
+ videos = crud.video.get_multi(db, skip=skip, limit=limit)
|
|
|
else:
|
|
|
- items = crud.item.get_multi_by_owner(
|
|
|
+ videos = crud.video.get_multi_by_owner(
|
|
|
db=db, owner_id=current_user.id, skip=skip, limit=limit
|
|
|
)
|
|
|
- return items
|
|
|
+ return videos
|
|
|
|
|
|
@router.post("/", response_model=schemas.Item)
|
|
|
def upload_plot(
|