mirror of
https://github.com/immich-app/immich.git
synced 2025-02-18 01:24:26 -05:00
chore: cleanup template variables (#2107)
This commit is contained in:
parent
117f2fa00d
commit
3497a0de54
1 changed files with 2 additions and 7 deletions
|
@ -133,11 +133,10 @@ export class StorageTemplateCore {
|
||||||
const substitutions: Record<string, string> = {
|
const substitutions: Record<string, string> = {
|
||||||
filename,
|
filename,
|
||||||
ext,
|
ext,
|
||||||
|
filetype: asset.type == AssetType.IMAGE ? 'IMG' : 'VID',
|
||||||
|
filetypefull: asset.type == AssetType.IMAGE ? 'IMAGE' : 'VIDEO',
|
||||||
};
|
};
|
||||||
|
|
||||||
const fileType = asset.type == AssetType.IMAGE ? 'IMG' : 'VID';
|
|
||||||
const fileTypeFull = asset.type == AssetType.IMAGE ? 'IMAGE' : 'VIDEO';
|
|
||||||
|
|
||||||
const dt = luxon.DateTime.fromISO(new Date(asset.fileCreatedAt).toISOString());
|
const dt = luxon.DateTime.fromISO(new Date(asset.fileCreatedAt).toISOString());
|
||||||
|
|
||||||
const dateTokens = [
|
const dateTokens = [
|
||||||
|
@ -153,10 +152,6 @@ export class StorageTemplateCore {
|
||||||
substitutions[token] = dt.toFormat(token);
|
substitutions[token] = dt.toFormat(token);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Support file type token
|
|
||||||
substitutions.filetype = fileType;
|
|
||||||
substitutions.filetypefull = fileTypeFull;
|
|
||||||
|
|
||||||
return template(substitutions);
|
return template(substitutions);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue