mirror of
https://github.com/HamzaSha1/zod-backend.git
synced 2025-08-25 21:59:40 +00:00
12 lines
415 B
TypeScript
12 lines
415 B
TypeScript
import { DocumentType } from '../enums';
|
|
|
|
export const BUCKETS: Record<DocumentType, string> = {
|
|
[DocumentType.PROFILE_PICTURE]: 'profile-pictures',
|
|
[DocumentType.PASSPORT]: 'passports',
|
|
[DocumentType.DEFAULT_AVATAR]: 'avatars',
|
|
[DocumentType.DEFAULT_TASKS_LOGO]: 'tasks-logo',
|
|
[DocumentType.CUSTOM_AVATAR]: 'avatars',
|
|
[DocumentType.CUSTOM_TASKS_LOGO]: 'tasks-logo',
|
|
[DocumentType.GOALS]: 'goals',
|
|
};
|