7 lines
127 B
JavaScript
7 lines
127 B
JavaScript
|
'use strict';
|
||
|
|
||
|
module.exports = function enableAuthentication(server) {
|
||
|
// enable authentication
|
||
|
// server.enableAuth();
|
||
|
};
|