mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-20 06:24:44 +02:00

* remove old settings stuff * add basic settings page * add some settings * add "test mail" button * fix mail fields not updating * fix phpstan * fix default for "top navigation" * force toggle buttons to be bool * force toggle to be bool * add class to view to allow customization * add mailgun settings * add notification settings * add timeout settings * organize tabs into sub-functions * add more settings * add backup settings * add sections to mail settings * add setting for trusted_proxies * fix unsaved data alert not showing * fix clear action * Fix clear action v2 TagsInput expects an array, not a string, fails on saving when using `''` * Add App favicon * Remove defaults, collapse misc sections * Move Save btn, Add API rate limit * small cleanup --------- Co-authored-by: notCharles <charles@pelican.dev>
29 lines
768 B
PHP
29 lines
768 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Facade;
|
|
|
|
return [
|
|
|
|
'name' => env('APP_NAME', 'Pelican'),
|
|
'favicon' => env('APP_FAVICON', './pelican.ico'),
|
|
|
|
'version' => 'canary',
|
|
|
|
'exceptions' => [
|
|
'report_all' => env('APP_REPORT_ALL_EXCEPTIONS', false),
|
|
],
|
|
|
|
'aliases' => Facade::defaultAliases()->merge([
|
|
'Alert' => Prologue\Alerts\Facades\Alert::class,
|
|
'Carbon' => Carbon\Carbon::class,
|
|
'JavaScript' => Laracasts\Utilities\JavaScript\JavaScriptFacade::class,
|
|
'Theme' => App\Extensions\Facades\Theme::class,
|
|
|
|
// Custom Facades
|
|
'Activity' => App\Facades\Activity::class,
|
|
'LogBatch' => App\Facades\LogBatch::class,
|
|
'LogTarget' => App\Facades\LogTarget::class,
|
|
])->toArray(),
|
|
|
|
];
|