diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2020-04-16 20:23:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-16 20:23:01 +0200 |
commit | 9f9e09fd4c5159be97620acc2553d29df123a40f (patch) | |
tree | 04404419e2a0aa37c846f630a5eb403403acd647 | |
parent | d55f4183b568aa46daacd266e842bb458ea8ce9d (diff) | |
parent | 646031a04977de3886c5e3d4a4ab7726f52b220b (diff) | |
download | nextcloud-server-9f9e09fd4c5159be97620acc2553d29df123a40f.tar.gz nextcloud-server-9f9e09fd4c5159be97620acc2553d29df123a40f.zip |
Merge pull request #20523 from nextcloud/enh/noid/rename-updatenotification
Rename updatenotifications webpack module to updatenotification
-rw-r--r-- | webpack.common.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/webpack.common.js b/webpack.common.js index e37340973a8..ee8db43e728 100644 --- a/webpack.common.js +++ b/webpack.common.js @@ -14,7 +14,7 @@ const oauth2 = require('./apps/oauth2/webpack') const settings = require('./apps/settings/webpack') const systemtags = require('./apps/systemtags/webpack') const twofactor_backupscodes = require('./apps/twofactor_backupcodes/webpack') -const updatenotifications = require('./apps/updatenotification/webpack') +const updatenotification = require('./apps/updatenotification/webpack') const workflowengine = require('./apps/workflowengine/webpack') const modules = { @@ -29,7 +29,7 @@ const modules = { settings, systemtags, twofactor_backupscodes, - updatenotifications, + updatenotification, workflowengine } |