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

Republishing modules configuration files

parent b7c25f19
......@@ -99,6 +99,8 @@ return [
'jquery.slug.js',
'keypressAction.js',
'app.js',
'main.js',
'sisyphus.js',
],
],
];
......@@ -15,4 +15,14 @@ return [
'description' => 'core::settings.template',
'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
return [
'dashboard.grid' => [
'save',
'reset',
],
'dashboard' => [
'index',
],
......
......@@ -20,4 +20,12 @@ return [
|--------------------------------------------------------------------------
*/
'max-file-size' => '5',
/*
|--------------------------------------------------------------------------
| Determine the max total media folder size
|--------------------------------------------------------------------------
| Expressed in bytes
*/
'max-total-size' => 1000000000,
];
......@@ -8,4 +8,8 @@ return [
'update',
'destroy',
],
'media.media-grid' => [
'index',
'ckIndex',
]
];
......@@ -2,10 +2,21 @@
return [
'smallThumb' => [
'fit' => [
'resize' => [
'width' => 50,
'height' => 50,
'height' => null,
'callback' => function ($constraint) {
$constraint->aspectRatio();
$constraint->upsize();
},
],
],
'mediumThumb' => [
'resize' => [
'width' => 180,
'height' => null,
'callback' => function ($constraint) {
$constraint->aspectRatio();
$constraint->upsize();
},
],
......
......@@ -23,6 +23,7 @@ return [
| only supported by the Sentinel user driver
*/
'login-columns' => ['email'],
/*
|--------------------------------------------------------------------------
| Fillable user fields
......
......@@ -7,4 +7,23 @@ return [
'disable',
'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