-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
52 lines (34 loc) · 1.41 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
NAME
RT::Extension::BriefHistory - Filter history by type on ticket display
page
DESCRIPTION
This plugin filter the history on the ticket display page by transaction
types that are defined in the configuration. By default it shows only
the transaction types create, correspond and comment.
The history page shows always the full history.
It was created after an article in the Best Practical wiki and an
discussion in the rt-user mailing list (look at SEE ALSO).
INSTALLATION
perl Makefile.PL
make
make install
May need root permissions
Edit your /opt/rt4/etc/RT_SiteConfig.pm
If you are using RT 4.2 or greater, add this line:
Plugin('RT::Extension::BriefHistory');
For RT 4.0, add this line:
Set(@Plugins, qw(RT::Extension::BriefHistory));
or add RT::Extension::BriefHistory to your existing @Plugins line.
Clear your mason cache
rm -rf /opt/rt4/var/mason_data/obj/*
Restart your webserver
AUTHOR
Christian Loos <[email protected]>
LICENCE AND COPYRIGHT
Copyright (C) 2010-2021, Christian Loos.
This library is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
SEE ALSO
<http://bestpractical.com/rt/>
<http://wiki.bestpractical.com/view/HideTransactions>
<http://lists.bestpractical.com/pipermail/rt-users/2010-May/064720.html>