Revision history of "Remove a super user from the Owners dropdown list"

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

  • curprev 09:51, 20 June 2023Ronaldo talk contribs 1,107 bytes +1,107 Created page with "You can achieve this via a callback to exclude specified users from the owner dropdown, e.g. create /opt/rt5/local/html/Callbacks/MyRT/Elements/SelectOwnerDropdown/ModifyOwnerListRaw with the following content: <pre> <%INIT> if ( $UserHashRef ) { for my $user_id ( 14, 25, 26, 38, 57 ) { delete $UserHashRef->{$user_id}; } } </%INIT> <%ARGS> $UserHashRef => undef </%ARGS> </pre> Remember to replace the list..."