mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2025-12-30 21:03:58 -05:00
5 lines
104 B
JavaScript
5 lines
104 B
JavaScript
module.exports = function enableAuthentication(app) {
|
|
// enable authentication
|
|
app.enableAuth();
|
|
};
|