13 lines
323 B
TypeScript
13 lines
323 B
TypeScript
const getPublicCollectionData = async (collectionId: number) => {
|
|
const res = await fetch("/api/v1/public/collections/" + collectionId);
|
|
|
|
if (res.status === 400)
|
|
return { response: "Collection not found.", status: 400 };
|
|
|
|
const data = await res.json();
|
|
|
|
return data;
|
|
};
|
|
|
|
export default getPublicCollectionData;
|