diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2020-07-15 11:10:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-15 11:10:15 +0200 |
commit | f04f9321dfda4c46f8473dfe711e4c97e21a15bb (patch) | |
tree | 646075b2129c66ea30fa920c757f07f257e49d4f /webpack.common.js | |
parent | 24ec4a83ba8d3a490cfa3eaa97b9e64a0afdae06 (diff) | |
parent | 6b2bb32f2347ea29ec81a8f096afddfc2cc0a312 (diff) | |
download | nextcloud-server-f04f9321dfda4c46f8473dfe711e4c97e21a15bb.tar.gz nextcloud-server-f04f9321dfda4c46f8473dfe711e4c97e21a15bb.zip |
Merge pull request #21346 from nextcloud/enh/20930/dashboard
Dashboard API
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 ee8db43e728..249647c3146 100644 --- a/webpack.common.js +++ b/webpack.common.js @@ -6,6 +6,7 @@ const { VueLoaderPlugin } = require('vue-loader') const accessibility = require('./apps/accessibility/webpack') const comments = require('./apps/comments/webpack') const core = require('./core/webpack') +const dashboard = require('./apps/dashboard/webpack') const files = require('./apps/files/webpack') const files_sharing = require('./apps/files_sharing/webpack') const files_trashbin = require('./apps/files_trashbin/webpack') @@ -21,6 +22,7 @@ const modules = { accessibility, comments, core, + dashboard, files, files_sharing, files_trashbin, |