Commit 0ee96b43 authored by Nicolas Widart's avatar Nicolas Widart

Republishing modules configuration files

parent b7c25f19
...@@ -99,6 +99,8 @@ return [ ...@@ -99,6 +99,8 @@ return [
'jquery.slug.js', 'jquery.slug.js',
'keypressAction.js', 'keypressAction.js',
'app.js', 'app.js',
'main.js',
'sisyphus.js',
], ],
], ],
]; ];
...@@ -15,4 +15,14 @@ return [ ...@@ -15,4 +15,14 @@ return [
'description' => 'core::settings.template', 'description' => 'core::settings.template',
'view' => 'core::fields.select-theme', 'view' => 'core::fields.select-theme',
], ],
'google-analytics' => [
'description' => 'core::settings.google-analytics',
'view' => 'textarea',
'translatable' => false,
],
'locales' => [
'description' => 'core::settings.locales',
'view' => 'core::fields.select-locales',
'translatable' => false,
],
]; ];
<?php <?php
return [ return [
'dashboard.grid' => [
'save',
'reset',
],
'dashboard' => [ 'dashboard' => [
'index', 'index',
], ],
......
...@@ -20,4 +20,12 @@ return [ ...@@ -20,4 +20,12 @@ return [
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
*/ */
'max-file-size' => '5', 'max-file-size' => '5',
/*
|--------------------------------------------------------------------------
| Determine the max total media folder size
|--------------------------------------------------------------------------
| Expressed in bytes
*/
'max-total-size' => 1000000000,
]; ];
...@@ -8,4 +8,8 @@ return [ ...@@ -8,4 +8,8 @@ return [
'update', 'update',
'destroy', 'destroy',
], ],
'media.media-grid' => [
'index',
'ckIndex',
]
]; ];
...@@ -2,10 +2,21 @@ ...@@ -2,10 +2,21 @@
return [ return [
'smallThumb' => [ 'smallThumb' => [
'fit' => [ 'resize' => [
'width' => 50, 'width' => 50,
'height' => 50, 'height' => null,
'callback' => function ($constraint) { 'callback' => function ($constraint) {
$constraint->aspectRatio();
$constraint->upsize();
},
],
],
'mediumThumb' => [
'resize' => [
'width' => 180,
'height' => null,
'callback' => function ($constraint) {
$constraint->aspectRatio();
$constraint->upsize(); $constraint->upsize();
}, },
], ],
......
...@@ -23,6 +23,7 @@ return [ ...@@ -23,6 +23,7 @@ return [
| only supported by the Sentinel user driver | only supported by the Sentinel user driver
*/ */
'login-columns' => ['email'], 'login-columns' => ['email'],
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
| Fillable user fields | Fillable user fields
......
...@@ -7,4 +7,23 @@ return [ ...@@ -7,4 +7,23 @@ return [
'disable', 'disable',
'enable', 'enable',
], ],
/*'workshop.workbench' => [
'index',
'generate',
'migrate',
'install',
'seed',
],
'workshop.generate' => [
'generate',
],
'workshop.install' => [
'install',
],
'workshop.migrate' => [
'migrate',
],
'workshop.seed' => [
'seed',
],*/
]; ];
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment