mirror of
https://github.com/vkaelin/LeagueStats.git
synced 2026-03-25 12:57:28 +00:00
29 lines
694 B
JavaScript
29 lines
694 B
JavaScript
|
|
'use strict'
|
||
|
|
|
||
|
|
module.exports = {
|
||
|
|
/*
|
||
|
|
* When enabled, Bulblebee will automatically parse the ?include=
|
||
|
|
* parameter and include all requested resources
|
||
|
|
*/
|
||
|
|
parseRequest: false,
|
||
|
|
|
||
|
|
/*
|
||
|
|
* Nested includes will be resolved up to this limit any further nested
|
||
|
|
* resources are going to be ignored
|
||
|
|
*/
|
||
|
|
includeRecursionLimit: 10,
|
||
|
|
|
||
|
|
/*
|
||
|
|
* The serializer will be used to transform the data into its final
|
||
|
|
* representation.
|
||
|
|
* Currently supported: 'plain', 'data'
|
||
|
|
*/
|
||
|
|
serializer: 'plain',
|
||
|
|
|
||
|
|
/*
|
||
|
|
* When a transformer is reffered to by its name only, Bumblebee will try to
|
||
|
|
* resolve the transformer using this namespace as prefix.
|
||
|
|
*/
|
||
|
|
namespace: 'App/Transformers'
|
||
|
|
}
|