freeCodeCamp/server/boot/authentication.js

5 lines
104 B
JavaScript
Raw Normal View History

module.exports = function enableAuthentication(app) {
2015-06-03 00:27:02 +00:00
// enable authentication
app.enableAuth();
2015-06-03 00:27:02 +00:00
};