- Mark as New
- Follow
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
Hi,
Security is performed here by hiding the link to the page from non-admin users in the nav bar.
The jsp page can be altered (overwritten on upgrade) to add proper authorization check tho, put this at the top somewhere:
if (!ctx.hasRight('admin')) {
response.sendError(HttpServletResponse.SC_FORBIDDEN);
return;
}
Thanks,
-Jon