IO-2039 Add unknown file type thumbnail.

This commit is contained in:
Patrick Fic
2022-09-08 10:05:38 -07:00
parent 06c3eccdac
commit 7121616a1f
4 changed files with 9 additions and 3 deletions

View File

@@ -24,6 +24,10 @@ export const FolderPaths = {
VendorsFolder,
};
export const AssetPaths = {
File: "/assets/file.png",
};
export function JobRelativeFilePath(jobid: string, filename: string) {
return path.join(FolderPaths.Jobs, jobid, filename);
}