mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2025-02-06 23:10:03 +00:00
![j.dang](/assets/img/avatar_default.png)
- Add helper class to determine OS and whether to check key permissions. - Generate CryptKey instances to pass to Auth Server instead of raw keys. - Update slim settings to not set content length header
13 lines
418 B
PHP
13 lines
418 B
PHP
<?php
|
|
|
|
use Api\Core\Loader\CustomLoader;
|
|
|
|
return CustomLoader::mergeCustomArray([
|
|
'settings' => [
|
|
/** Additional information about exceptions are displayed by the default error handler. */
|
|
'displayErrorDetails' => true,
|
|
/** Routes are accessible in middleware. */
|
|
'determineRouteBeforeAppMiddleware' => true,
|
|
'addContentLengthHeader' => false,
|
|
]
|
|
], basename(__FILE__));
|