UnknownSec Bypass
403
:
/
mnt
/
lmsestudio-instance-vol002
/
lms_2ae1a8506d80
/
config
/ [
drwxr-xr-x
]
Menu
Upload
Mass depes
Mass delete
Terminal
Info server
About
name :
repository.php
<?php /* |-------------------------------------------------------------------------- | Prettus Repository Config |-------------------------------------------------------------------------- | | */ return [ /* |-------------------------------------------------------------------------- | Repository Pagination Limit Default |-------------------------------------------------------------------------- | */ 'pagination'=>[ 'limit'=>15 ], /* |-------------------------------------------------------------------------- | Fractal Presenter Config |-------------------------------------------------------------------------- | */ 'fractal'=>[ 'params'=>[ 'include'=>'include' ] ], /* |-------------------------------------------------------------------------- | Criteria Config |-------------------------------------------------------------------------- | | Settings of request parameters names that will be used by Criteria | */ 'criteria'=>[ /* |-------------------------------------------------------------------------- | Accepted Conditions |-------------------------------------------------------------------------- | | Conditions accepted in consultations where the Criteria | | Ex: | | 'acceptedConditions'=>['=','like'] | | $query->where('foo','=','bar') | $query->where('foo','like','bar') | */ 'acceptedConditions'=>[ '=','like' ], /* |-------------------------------------------------------------------------- | Request Params |-------------------------------------------------------------------------- | | Request parameters that will be used to filter the query in the repository | | Params : | | - search : Searched value | Ex: http://artesaos/?search=lorem | | - searchFields : Fields in which research should be carried out | Ex: | http://artesaos/?search=lorem&searchFields=name;email | http://artesaos/?search=lorem&searchFields=name:like;email | http://artesaos/?search=lorem&searchFields=name:like | | - filter : Fields that must be returned to the response object | Ex: | http://artesaos/?search=lorem&filter=id,name | | - orderBy : Order By | Ex: | http://artesaos/?search=lorem&orderBy=id | | - sortedBy : Sort | Ex: | http://artesaos/?search=lorem&orderBy=id&sortedBy=asc | http://artesaos/?search=lorem&orderBy=id&sortedBy=desc | */ 'params'=>[ 'search' =>'search', 'searchFields' =>'searchFields', 'filter' =>'filter', 'orderBy' =>'orderBy', 'sortedBy' =>'sortedBy' ] ], /* |-------------------------------------------------------------------------- | Generator Config |-------------------------------------------------------------------------- | */ 'generator'=>[ 'basePath'=>app_path(), 'rootNamespace'=>'EstudioLMS\\' ], 'cache'=>[ //Enable or disable cache repositories 'enabled' => false, //Lifetime of cache 'minutes' => 30, //Repository Cache, implementation Illuminate\Contracts\Cache\Repository 'repository'=> 'cache', //Sets clearing the cache 'clean' => [ //Enable, disable clearing the cache on changes 'enabled' => true, 'on' => [ //Enable, disable clearing the cache when you create an item 'create'=>true, //Enable, disable clearing the cache when upgrading an item 'update'=>true, //Enable, disable clearing the cache when you delete an item 'delete'=>true, ] ], 'params' => [ //Request parameter that will be used to bypass the cache repository 'skipCache'=>'skipCache' ], 'allowed'=>[ //Allow caching only for some methods 'only' =>null, //Allow caching for all available methods, except 'except'=>null ], ], ];
Copyright © 2026 - UnknownSec