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