diff options
author | Christopher Ng <chrng8@gmail.com> | 2023-08-02 19:15:01 -0700 |
---|---|---|
committer | Andy Scherzinger <info@andy-scherzinger.de> | 2023-08-10 12:28:19 +0200 |
commit | b10a1a721200b76518ac203371dcea45642ef756 (patch) | |
tree | 32ce150fbd70d5efe55a2010e4a227429ddfbdb5 /webpack.modules.js | |
parent | 1af7287490e473ed2a427e5e2355435da0b74217 (diff) | |
download | nextcloud-server-b10a1a721200b76518ac203371dcea45642ef756.tar.gz nextcloud-server-b10a1a721200b76518ac203371dcea45642ef756.zip |
feat(files_reminders): add webpack module
Signed-off-by: Christopher Ng <chrng8@gmail.com>
(cherry picked from commit 2089fbaf82c748fc5d64491635e9929c262f3b85)
Diffstat (limited to 'webpack.modules.js')
-rw-r--r-- | webpack.modules.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/webpack.modules.js b/webpack.modules.js index b23f14c3a71..72509887a5f 100644 --- a/webpack.modules.js +++ b/webpack.modules.js @@ -54,6 +54,9 @@ module.exports = { 'personal-settings': path.join(__dirname, 'apps/files/src', 'main-personal-settings.js'), 'reference-files': path.join(__dirname, 'apps/files/src', 'reference-files.js'), }, + files_reminders: { + main: path.join(__dirname, 'apps/files_reminders/src', 'main.ts'), + }, files_sharing: { additionalScripts: path.join(__dirname, 'apps/files_sharing/src', 'additionalScripts.js'), collaboration: path.join(__dirname, 'apps/files_sharing/src', 'collaborationresourceshandler.js'), |