Files
freeCodeCamp/server/boot/authentication.js

5 lines
104 B
JavaScript
Raw Normal View History

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