From 37c78209a8a78b6b11bb66b6adcd0a3be46b550e Mon Sep 17 00:00:00 2001 From: Bryan Ashby Date: Tue, 26 Sep 2017 10:39:07 -0600 Subject: [PATCH] Fix up system internal file areas --- core/config.js | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/core/config.js b/core/config.js index da210a75..549b44a2 100644 --- a/core/config.js +++ b/core/config.js @@ -689,14 +689,21 @@ function getDefaultConfig() { // Non-absolute paths are relative to |areaStoragePrefix|. // storageTags : { - sys_msg_attach : 'msg_attach', + sys_msg_attach : 'sys_msg_attach', + sys_temp_download : 'sys_temp_download', }, areas: { system_message_attachment : { - name : 'Message attachments', + name : 'System Message Attachments', desc : 'File attachments to messages', - storageTags : 'sys_msg_attach', // may be string or array of strings + storageTags : [ 'sys_msg_attach' ], + }, + + system_temporary_download : { + name : 'System Temporary Downloads', + desc : 'Temporary downloadables', + storageTags : [ 'sys_temp_download' ], } } },