- now authenticated user can change password with check of old password and password confirmination
Some checks failed
CI Pipeline / japa-tests (push) Failing after 52s
Some checks failed
CI Pipeline / japa-tests (push) Failing after 52s
- cchanged route app.dashboard to apps.dashboard - add editor and reviewer relation to Dataset.ts - added personal menu in asideMenu - added Approve.vue for editor - show warning in Index.vue (editor), if no dataset is loaded - user Receive.vue without inertia helper form - npm updates - added routes in routes.ts
This commit is contained in:
parent
0d51002903
commit
ae0c471e93
14 changed files with 733 additions and 408 deletions
|
@ -7,11 +7,31 @@ import {
|
|||
mdiPublish,
|
||||
mdiAccountArrowUp,
|
||||
mdiFormatListNumbered,
|
||||
mdiLock
|
||||
} from '@mdi/js';
|
||||
|
||||
export default [
|
||||
{
|
||||
route: 'app.dashboard',
|
||||
// route: 'dataset.create',
|
||||
icon: mdiAccountArrowUp,
|
||||
label: 'Personal',
|
||||
// roles: ['submitter'],
|
||||
isOpen: true,
|
||||
children: [
|
||||
{
|
||||
route: 'settings.user',
|
||||
icon: mdiLock,
|
||||
label: 'Security',
|
||||
},
|
||||
// {
|
||||
// route: 'dataset.create',
|
||||
// icon: mdiPublish,
|
||||
// label: 'Create Dataset',
|
||||
// },
|
||||
],
|
||||
},
|
||||
{
|
||||
route: 'apps.dashboard',
|
||||
icon: mdiMonitor,
|
||||
label: 'Dashboard',
|
||||
},
|
||||
|
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue