Skip to content
Snippets Groups Projects
Commit 4ebfb227 authored by Moss's avatar Moss
Browse files

[security] allowed for admin and tester to access viewTransationLogs.jsp from...

[security] allowed for admin and tester to access viewTransationLogs.jsp from their respective menu pages
parent cd1610ba
No related branches found
No related tags found
1 merge request!21UC39
...@@ -246,10 +246,12 @@ ...@@ -246,10 +246,12 @@
</web-resource-name> </web-resource-name>
<!-- Define the context-relative URL(s) to be protected --> <!-- Define the context-relative URL(s) to be protected -->
<url-pattern>/auth/admin/*</url-pattern> <url-pattern>/auth/admin/*</url-pattern>
<url-pattern>/auth/tester/*</url-pattern>
</web-resource-collection> </web-resource-collection>
<auth-constraint> <auth-constraint>
<!-- Anyone with one of the listed roles may access this area --> <!-- Anyone with one of the listed roles may access this area -->
<role-name>admin</role-name> <role-name>admin</role-name>
<role-name>tester</role-name>
</auth-constraint> </auth-constraint>
</security-constraint> </security-constraint>
......
...@@ -44,6 +44,7 @@ ...@@ -44,6 +44,7 @@
<li><a href="/iTrust/auth/admin/sessionTimeout.jsp">Change Global Session Timeout </a></li> <li><a href="/iTrust/auth/admin/sessionTimeout.jsp">Change Global Session Timeout </a></li>
<li><a href="/iTrust/auth/surveyResults.jsp">Satisfaction Survey Results</a></li> <li><a href="/iTrust/auth/surveyResults.jsp">Satisfaction Survey Results</a></li>
<li><a href="/iTrust/auth/admin/activatePatient.jsp">Activate Patient</a></li> <li><a href="/iTrust/auth/admin/activatePatient.jsp">Activate Patient</a></li>
<li><a href="/iTrust/auth/admin/viewTransactionLogs.jsp">View Transaction Logs</a></li>
</ul> </ul>
</div> </div>
</div> </div>
\ No newline at end of file
...@@ -5,6 +5,7 @@ ...@@ -5,6 +5,7 @@
<div class="panel-body" id="view-menu"> <div class="panel-body" id="view-menu">
<ul class="nav nav-sidebar"> <ul class="nav nav-sidebar">
<li><a href="/iTrust/auth/tester/home.jsp">Operational Profile</a></li> <li><a href="/iTrust/auth/tester/home.jsp">Operational Profile</a></li>
<li><a href="/iTrust/auth/admin/viewTransactionLogs.jsp">View Transaction Logs</a></li>
</ul> </ul>
</div> </div>
</div> </div>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment