authentication.js 125 Bytes
'use strict';

module.exports = function enableAuthentication(server) {
  // enable authentication
  server.enableAuth();
};