mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-05-09 21:01:20 -04:00
5 lines
110 B
JavaScript
5 lines
110 B
JavaScript
module.exports = function enableAuthentication(server) {
|
|
// enable authentication
|
|
server.enableAuth();
|
|
};
|