kibana-with-account
Version:
kibana-with-account is develop based kibana project
26 lines (19 loc) • 377 B
JavaScript
exports.register = function (plugin, options, next) {
plugin.route({
method: 'GET',
path: '/admin/{glob*}',
config: {
auth: {
strategy: 'session',
scope: 'admin'
}
},
handler: function (request, reply) {
reply.view('admin/index.jsx');
}
});
next();
};
exports.register.attributes = {
name: 'web/admin'
};