[rt-devel] Infos for staff about requestors

Senoner Samuel Samuel.Senoner at eurac.edu
Fri Apr 2 10:54:03 EST 2004


When a priviledged user looks at a ticket he gets this:
 
More about XXXXXXXXX     
Comments about this user:
No comment entered about this user
This user's 10 highest priority tickets:
 
And if they click on more about they don't see the workphone number, which can be interesting
 
With this patch the commens are public (anyway only priviledged users get this info)
 

Patch applies to: RT 3.0.4
 
diff:
 
--- User_Overlay.pm.bak 2004-04-01 18:18:28.000000000 +0200
+++ User_Overlay.pm     2004-04-01 18:44:46.000000000 +0200
@@ -68,7 +68,7 @@
         Password =>
                 { write => 1, type => 'varchar(40)', default => ''},
         Comments =>
-                {read => 1, write => 1, admin => 1, type => 'blob', default => ''},
+                {read => 1, write => 1, public =>1, admin => 1, type => 'blob', default => ''},
         Signature =>
                 {read => 1, write => 1, type => 'blob', default => ''},
         EmailAddress =>
@@ -104,7 +104,7 @@
         HomePhone =>
                 {read => 1, write => 1, type => 'varchar(30)', default => ''},
         WorkPhone =>
-                {read => 1, write => 1, type => 'varchar(30)', default => ''},
+                {read => 1, write => 1, public =>, type => 'varchar(30)', default => ''},
         MobilePhone =>
                 {read => 1, write => 1, type => 'varchar(30)', default => ''},
         PagerPhone =>
 
 
Hope someone finds it interesting.
 
SAmuel




More information about the Rt-devel mailing list