mirror of
https://github.com/strapi/strapi.git
synced 2025-09-26 08:52:26 +00:00
8 lines
164 B
JavaScript
8 lines
164 B
JavaScript
'use strict';
|
|
|
|
const authStrategy = require('./auth/strategy');
|
|
|
|
module.exports = strapi => {
|
|
strapi.container.get('content-api').auth.register(authStrategy);
|
|
};
|