feat: style tweaks to upload attachments popover

This commit is contained in:
Ahmed Bouhuolia
2024-05-29 19:03:21 +02:00
parent ceb133e29a
commit 6e50de1d28
5 changed files with 97 additions and 41 deletions

View File

@@ -6,7 +6,7 @@ export class AttachmentTransformer extends Transformer {
* @returns {string[]}
*/
public excludeAttributes = (): string[] => {
return ['*'];
return ['id', 'createdAt'];
};
/**
@@ -14,6 +14,6 @@ export class AttachmentTransformer extends Transformer {
* @returns {string[]}
*/
public includeAttributes = (): string[] => {
return ['extension', 'key'];
return [];
};
}