Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 406 Bytes
e4e0e54 |
1 2 3 4 5 6 7 8 9 |
import { Video } from "../types.mts"
import { getCompletedVideos } from "./getCompletedVideos.mts"
import { getPendingVideos } from "./getPendingVideos.mts"
export const getAllVideosForOwner = async (ownerId: string): Promise<Video[]> => {
const pendingVideos = await getPendingVideos(ownerId)
const completedVideos = await getCompletedVideos(ownerId)
return [...pendingVideos, ...completedVideos]
} |