jay-depot/turnpike

View on GitHub
bin/skeletons/project/application/access/Index.js

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * Access control rules for the Index controller.
 * These rules will control access to your home page. Typically you want to
 * keep this permissive.
 */

function Index(route, callback) {
  callback(undefined, true);
}

module.exports = Index;