freeCodeCamp/server/boot/authentication.js

5 lines
110 B
JavaScript
Raw Normal View History

2015-06-02 17:27:02 -07:00
module.exports = function enableAuthentication(server) {
// enable authentication
server.enableAuth();
};