feat: add attachment endpoints for credit note

This commit is contained in:
Methapon2001 2025-01-10 09:05:03 +07:00
parent 5c3dc9abcd
commit a3735abb78
2 changed files with 66 additions and 0 deletions

View file

@ -112,4 +112,7 @@ export const fileLocation = {
task: {
attachment: (taskId: string, name?: string) => `task/attachment-${taskId}/${name || ""}`,
},
creditNote: {
attachment: (taskId: string, name?: string) => `credit-note/attachment-${taskId}/${name || ""}`,
},
};