2015-10-01 00:30:16 +02:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Built-in hooks (order matters)
|
|
|
|
*/
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
_config: true,
|
|
|
|
_api: true,
|
2016-01-20 11:09:11 +01:00
|
|
|
_hooks: true,
|
2016-03-11 14:11:05 +01:00
|
|
|
responses: true,
|
2015-10-01 00:30:16 +02:00
|
|
|
responseTime: true,
|
|
|
|
bodyParser: true,
|
|
|
|
session: true,
|
2015-11-04 17:31:07 +01:00
|
|
|
grant: true,
|
2015-10-01 00:30:16 +02:00
|
|
|
proxy: true,
|
|
|
|
ssl: true,
|
|
|
|
ip: true,
|
|
|
|
cors: true,
|
|
|
|
lusca: true,
|
|
|
|
favicon: true,
|
|
|
|
gzip: true,
|
|
|
|
i18n: true,
|
|
|
|
cron: true,
|
|
|
|
logger: true,
|
|
|
|
views: true,
|
|
|
|
router: true,
|
|
|
|
static: true,
|
|
|
|
websockets: true,
|
2016-03-16 14:41:15 +01:00
|
|
|
jsonapi: true,
|
|
|
|
models: true,
|
|
|
|
graphql: true
|
2015-10-01 00:30:16 +02:00
|
|
|
};
|