diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2019-02-20 18:08:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-20 18:08:56 +0100 |
commit | 5eca741309ab4b3ecf1de80ebf3f4bd8c599d67b (patch) | |
tree | cc15cc60441870321cec13e4f93439362f298abe /webpack.common.js | |
parent | beba18224898777b559f3a657d890c0e9bdd7864 (diff) | |
parent | efbaf323ad94522aacc0a8e21da2b74159599b64 (diff) | |
download | nextcloud-server-5eca741309ab4b3ecf1de80ebf3f4bd8c599d67b.tar.gz nextcloud-server-5eca741309ab4b3ecf1de80ebf3f4bd8c599d67b.zip |
Merge pull request #14311 from nextcloud/enh/2fa_backupscodes_to_main_webpack
Move twofactor_backupcodes to main webpack bundle
Diffstat (limited to 'webpack.common.js')
-rw-r--r-- | webpack.common.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/webpack.common.js b/webpack.common.js index 816acb4834a..6d8660b3bcb 100644 --- a/webpack.common.js +++ b/webpack.common.js @@ -7,6 +7,7 @@ const files_trashbin = require('./apps/files_trashbin/webpack') const files_versions = require('./apps/files_versions/webpack') const oauth2 = require('./apps/oauth2/webpack') const systemtags = require('./apps/systemtags/webpack') +const twofactor_backupscodes = require('./apps/twofactor_backupcodes/webpack') const updatenotifications = require('./apps/updatenotification/webpack') module.exports = [].concat( @@ -18,5 +19,6 @@ module.exports = [].concat( files_versions, oauth2, systemtags, + twofactor_backupscodes, updatenotifications ); |