14 lines
306 B
JavaScript
Raw Normal View History

2021-10-26 12:07:57 +02:00
module.exports = ({ env }) => ({
// autoOpen: false,
auth: {
secret: env('ADMIN_JWT_SECRET', 'example-token'),
},
apiToken: {
salt: env('API_TOKEN_SALT', 'example-salt'),
},
2023-01-17 09:27:33 +01:00
// Receive populated relations in webhook and db lifecycle payloads
relations: {
2023-01-18 15:42:11 +01:00
populate: true,
2023-01-17 09:27:33 +01:00
},
2021-10-26 12:07:57 +02:00
});