0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-11 06:52:38 +00:00

Add renderer metadata to Google Drive file properties

This commit is contained in:
G.Ambatte
2021-08-09 19:21:25 +12:00
parent 33b8f2002b
commit 2c954c398c

View File

@@ -190,10 +190,11 @@ GoogleActions = {
'description' : `${brew.description}`, 'description' : `${brew.description}`,
'parents' : [folderId], 'parents' : [folderId],
'properties' : { //AppProperties is not accessible 'properties' : { //AppProperties is not accessible
'shareId' : nanoid(12), 'shareId' : nanoid(12),
'editId' : nanoid(12), 'editId' : nanoid(12),
'title' : brew.title, 'title' : brew.title,
'views' : '0' 'views' : '0',
'renderer' : brew.renderer || 'legacy'
} }
}; };