diff options
Diffstat (limited to 'rt/webrt/Admin/Global/UserRights.html')
-rwxr-xr-x | rt/webrt/Admin/Global/UserRights.html | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/rt/webrt/Admin/Global/UserRights.html b/rt/webrt/Admin/Global/UserRights.html deleted file mode 100755 index 351f4b8c6..000000000 --- a/rt/webrt/Admin/Global/UserRights.html +++ /dev/null @@ -1,42 +0,0 @@ -<& /Admin/Elements/Header, Title => 'Modify System ACLS' &> -<& /Admin/Elements/SystemTabs &> - -<& /Elements/ListActions, actions => \@results &> - <FORM METHOD=POST action="UserRights.html"> - - -<h2>Modify global rights for users</h2> -<TABLE> -% while (my $UserObj = $Users->Next()) { - <TR ALIGN=RIGHT> - <TD VALIGN=TOP> - <A HREF="<%$RT::WebPath%>/Admin/Users/Modify.html?id=<%$UserObj->id%>"><% $UserObj->Name %></A> - </TD> - <TD> - <& /Admin/Elements/SelectRights, PrincipalObj => $UserObj, - PrincipalType => 'User', - Scope => 'System' &> - - </TD> - </TR> - -% } - </TABLE> - - <& /Elements/Submit, Caption => "Be sure to save your changes", Reset => 1 &> - </FORM> - -<%INIT> - - my @results = ProcessACLChanges(\@CheckACL, \%ARGS); - - # Find out which users we want to display ACL selects for - my $Users = new RT::Users($session{'CurrentUser'}); - - $Users->LimitToPrivileged(); - -</%INIT> - -<%ARGS> -@CheckACL => undef -</%ARGS> |