blob: d5a66b56a7451c6c36b3076cb8a8eb17d2f90c15 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
'use strict';
const authentication = require('feathers-authentication');
module.exports = function() {
const app = this;
let config = app.get('auth');
app.configure(authentication(config));
};
|