File tree 4 files changed +6
-6
lines changed
4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,6 @@ export default class DocumentModel extends LocalizedModel {
26
26
const thumbnail = this . files . filter (
27
27
( file ) => file . variant === "thumbnail" ,
28
28
) [ 0 ] ;
29
- return thumbnail && thumbnail . downloadUrl ;
29
+ return thumbnail && thumbnail . content ;
30
30
}
31
31
}
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ export default class FileModel extends Model {
4
4
@attr variant ;
5
5
@attr name ;
6
6
@attr metainfo ;
7
- @attr path ;
7
+ @attr content ;
8
8
@attr checksum ;
9
9
10
10
@attr createdAt ;
Original file line number Diff line number Diff line change @@ -14,16 +14,16 @@ export default class TemplateSerializer extends JSONSerializer {
14
14
serializeIntoHash = null ;
15
15
16
16
serialize ( snapshot ) {
17
- const { name, variant, path } = snapshot . attributes ( ) ;
17
+ const { name, variant, content } = snapshot . attributes ( ) ;
18
18
19
19
const formData = new FormData ( ) ;
20
20
21
21
formData . append ( "name" , name ) ;
22
22
formData . append ( "variant" , variant ) ;
23
23
formData . append ( "document" , snapshot . belongsTo ( "document" ) . id ) ;
24
24
25
- if ( path instanceof File ) {
26
- formData . append ( "path " , path ) ;
25
+ if ( content instanceof File ) {
26
+ formData . append ( "content " , content ) ;
27
27
}
28
28
29
29
return formData ;
Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ export default class DocumentsService extends Service {
68
68
document : documentModel ,
69
69
createdByGroup : this . config . activeGroup ,
70
70
modifiedByGroup : this . config . activeGroup ,
71
- path : file ,
71
+ content : file ,
72
72
} ) ;
73
73
await fileModel . save ( ) ;
74
74
You can’t perform that action at this time.
0 commit comments