jsperf/jsperf.com

View on GitHub
server/web/testimonials/index.js

Summary

Maintainability
A
2 hrs
Test Coverage
exports.register = function (server, options, next) {
  server.route({
    method: 'GET',
    path: '/testimonials',
    handler: function (request, reply) {
      reply.view('testimonials/index', {
        headTitle: 'Testimonials'
      });
    }
  });

  return next();
};

exports.register.attributes = {
  name: 'web/testimonials'
};