Deskripsi: - Upload foto profil ke storage - Upload background profile ke storge ## No Issue
15 lines
461 B
TypeScript
15 lines
461 B
TypeScript
const APIs = {
|
|
/**
|
|
*
|
|
* @param fileId | file id from wibu storage , atau bisa disimpan di DB
|
|
* @param size | file size 10 - 1000 , tergantung ukuran file dan kebutuhan saar di tampilkan
|
|
* @type {string}
|
|
*/
|
|
GET: ({ fileId, size }: { fileId: string; size?: string }) =>
|
|
size
|
|
? `https://wibu-storage.wibudev.com/api/files/${fileId}-size-${size}`
|
|
: `https://wibu-storage.wibudev.com/api/files/${fileId}`,
|
|
};
|
|
|
|
export default APIs;
|