diff options
author | Ferdinand Thiessen <opensource@fthiessen.de> | 2024-08-28 13:10:25 +0200 |
---|---|---|
committer | Ferdinand Thiessen <opensource@fthiessen.de> | 2024-09-03 16:07:49 +0200 |
commit | 04b25ba59d48ea3ab1d34d9f05ede33fc7ad7fbc (patch) | |
tree | d16c43eaeea478254009d7d2a87b75af0bc553ce /webpack.modules.js | |
parent | 5118f6684bd2f4f8d693ada710e845b6af5c5395 (diff) | |
download | nextcloud-server-04b25ba59d48ea3ab1d34d9f05ede33fc7ad7fbc.tar.gz nextcloud-server-04b25ba59d48ea3ab1d34d9f05ede33fc7ad7fbc.zip |
feat: Implement Vue UI for public page menu
This adds a Vue implementation of the public page menu,
that is the menu that can be added using `PublicTemplateResponse::setHeaderActions`.
Co-authored-by: Ferdinand Thiessen <opensource@fthiessen.de>
Co-authored-by: Louis <louis@chmn.me>
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Diffstat (limited to 'webpack.modules.js')
-rw-r--r-- | webpack.modules.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/webpack.modules.js b/webpack.modules.js index 1f29707611b..577f6f4a852 100644 --- a/webpack.modules.js +++ b/webpack.modules.js @@ -19,6 +19,7 @@ module.exports = { main: path.join(__dirname, 'core/src', 'main.js'), maintenance: path.join(__dirname, 'core/src', 'maintenance.js'), profile: path.join(__dirname, 'core/src', 'profile.ts'), + 'public-page-menu': path.resolve(__dirname, 'core/src', 'public-page-menu.ts'), recommendedapps: path.join(__dirname, 'core/src', 'recommendedapps.js'), systemtags: path.resolve(__dirname, 'core/src', 'systemtags/merged-systemtags.js'), 'unified-search': path.join(__dirname, 'core/src', 'unified-search.ts'), |