Files
opencloud/accounts/ui/app.js
Pascal Wengerter ab82aeed73 Handle UiKit & iconMaterial removal
Bump web-test-middleware in CI

Remove fileUpload volumes in CI, bump web to official v5.0.0

Rename web changelog & fix settings acceptance test

Add 'Spaces' to settings navBar tests

Add new profile link & quota to settings userMenu tests

Update expected failures from web v5.0.0 release

Bump web commit ID

Bump web commit ID
2022-02-15 14:46:14 +00:00

45 lines
694 B
JavaScript

import 'regenerator-runtime/runtime'
import App from './components/App.vue'
import store from './store'
import translations from './../l10n/translations.json'
// just a dummy function to trick gettext tools
function $gettext (msg) {
return msg
}
const appInfo = {
name: $gettext('Accounts'),
id: 'accounts',
icon: 'team',
isFileEditor: false
}
const routes = [
{
name: 'accounts',
path: '/',
component: App
}
]
const navItems = [
{
name: $gettext('Accounts'),
icon: appInfo.icon,
route: {
name: 'accounts',
path: `/${appInfo.id}/`
},
menu: 'apps'
}
]
export default {
appInfo,
routes,
navItems,
store,
translations
}