diff options
author | Ferdinand Thiessen <opensource@fthiessen.de> | 2024-03-02 21:33:02 +0100 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2024-03-07 22:40:30 +0100 |
commit | fa14daf9680bc0697376d966af4c4c79fa294934 (patch) | |
tree | 8a9d340ca9ef1c0e74edea4f414b3dec269df85a /webpack.modules.js | |
parent | d9d3448e237abbf6ba676cacb985ef43cf6d4b41 (diff) | |
download | nextcloud-server-fa14daf9680bc0697376d966af4c4c79fa294934.tar.gz nextcloud-server-fa14daf9680bc0697376d966af4c4c79fa294934.zip |
feat(updatenotification): Add notification for users when apps are updated
* Open app changelog dialog when available (webui)
* Fallback to open changelog page for mobile clients
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Diffstat (limited to 'webpack.modules.js')
-rw-r--r-- | webpack.modules.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/webpack.modules.js b/webpack.modules.js index 4b258c58ac2..676646ff73b 100644 --- a/webpack.modules.js +++ b/webpack.modules.js @@ -114,7 +114,9 @@ module.exports = { settings: path.join(__dirname, 'apps/twofactor_backupcodes/src', 'settings.js'), }, updatenotification: { - updatenotification: path.join(__dirname, 'apps/updatenotification/src', 'init.js'), + init: path.join(__dirname, 'apps/updatenotification/src', 'init.ts'), + 'view-changelog-page': path.join(__dirname, 'apps/updatenotification/src', 'view-changelog-page.ts'), + updatenotification: path.join(__dirname, 'apps/updatenotification/src', 'updatenotification.js'), }, user_status: { menu: path.join(__dirname, 'apps/user_status/src', 'menu.js'), |