- added LicenseController.ts and MimetypeController for enabling mime_types and licences
Some checks failed
CI Pipeline / japa-tests (push) Failing after 58s
Some checks failed
CI Pipeline / japa-tests (push) Failing after 58s
- add new authors and contributors only by unique email addresses - allow multiple file upload - added validation rule for validating length of uploaded files - modified Dockerfile for starting "bin/server.js" instead of *server.js" - npm updates
This commit is contained in:
parent
770e791613
commit
ac473b1e72
27 changed files with 1720 additions and 914 deletions
|
@ -10,6 +10,8 @@ import {
|
|||
mdiLock,
|
||||
mdiFormatListGroup,
|
||||
mdiShieldCrownOutline,
|
||||
mdiLicense,
|
||||
mdiFileDocument,
|
||||
} from '@mdi/js';
|
||||
|
||||
export default [
|
||||
|
@ -72,6 +74,18 @@ export default [
|
|||
label: 'Roles',
|
||||
roles: ['administrator'],
|
||||
},
|
||||
{
|
||||
route: 'settings.mimetype.index',
|
||||
icon: mdiFileDocument,
|
||||
label: 'Mime Types',
|
||||
roles: ['administrator'],
|
||||
},
|
||||
{
|
||||
route: 'settings.license.index',
|
||||
icon: mdiLicense,
|
||||
label: 'Licenses',
|
||||
roles: ['administrator'],
|
||||
},
|
||||
],
|
||||
},
|
||||
|
||||
|
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue