- small adaptions for AsideMenuItem.vue, AsideMenuLayer.vue
All checks were successful
CI Pipeline / japa-tests (push) Successful in 50s
All checks were successful
CI Pipeline / japa-tests (push) Successful in 50s
- new routes editor.dataset.list and editor.dataset.update - fir functionalities for editor role, suche as listing and receiving released datasets - npm updates
This commit is contained in:
parent
c1e056b9fc
commit
6fef581dd0
11 changed files with 550 additions and 84 deletions
|
@ -1,4 +1,13 @@
|
|||
import { mdiMonitor, mdiGithub, mdiAccountEye, mdiAccountGroup, mdiDatabasePlus } from '@mdi/js';
|
||||
import {
|
||||
mdiMonitor,
|
||||
mdiGithub,
|
||||
mdiAccountEye,
|
||||
mdiAccountGroup,
|
||||
mdiAccountEdit,
|
||||
mdiPublish,
|
||||
mdiAccountArrowUp,
|
||||
mdiFormatListNumbered,
|
||||
} from '@mdi/js';
|
||||
|
||||
export default [
|
||||
{
|
||||
|
@ -36,23 +45,42 @@ export default [
|
|||
},
|
||||
{
|
||||
// route: 'dataset.create',
|
||||
icon: mdiDatabasePlus,
|
||||
icon: mdiAccountArrowUp,
|
||||
label: 'Submitter',
|
||||
roles: ['submitter'],
|
||||
isOpen: false,
|
||||
children: [
|
||||
{
|
||||
route: 'dataset.list',
|
||||
icon: mdiDatabasePlus,
|
||||
icon: mdiFormatListNumbered,
|
||||
label: 'All my datasets',
|
||||
},
|
||||
{
|
||||
route: 'dataset.create',
|
||||
icon: mdiDatabasePlus,
|
||||
icon: mdiPublish,
|
||||
label: 'Create Dataset',
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
// route: 'dataset.create',
|
||||
icon: mdiAccountEdit,
|
||||
label: 'Editor',
|
||||
roles: ['editor'],
|
||||
isOpen: false,
|
||||
children: [
|
||||
{
|
||||
route: 'editor.dataset.list',
|
||||
icon: mdiFormatListNumbered,
|
||||
label: 'All my datasets',
|
||||
},
|
||||
// {
|
||||
// route: 'dataset.create',
|
||||
// icon: mdiPublish,
|
||||
// label: 'Create Dataset',
|
||||
// },
|
||||
],
|
||||
},
|
||||
// {
|
||||
// route: 'dataset.create',
|
||||
// icon: mdiDatabasePlus,
|
||||
|
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue