mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-01-10 00:04:22 -05:00
5 lines
104 B
JavaScript
5 lines
104 B
JavaScript
module.exports = function enableAuthentication(app) {
|
|
// enable authentication
|
|
app.enableAuth();
|
|
};
|