8 lines
164 B
JavaScript
Raw Normal View History

2021-09-06 19:58:59 +02:00
'use strict';
const authStrategy = require('./auth/strategy');
2021-09-06 19:58:59 +02:00
module.exports = strapi => {
strapi.container.get('content-api').auth.register(authStrategy);
2021-09-06 19:58:59 +02:00
};