mirror of
https://github.com/strapi/strapi.git
synced 2025-11-23 13:40:58 +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);
|
|
};
|