"Fossies" - the Fresh Open Source Software Archive 
Member "RT-Extension-Assets-1.05/etc/Tutorial_Configuration.txt" (15 Oct 2014, 805 Bytes) of package /linux/misc/RT-Extension-Assets-1.05.tar.gz:
As a special service "Fossies" has tried to format the requested text file into HTML format (style:
standard) with prefixed line numbers.
Alternatively you can here
view or
download the uninterpreted source code file.
1 # Configuration for the assets tutorial.
2 # Copy and paste into your RT_SiteConfig.pm to test.
3
4 Set(
5 $HomepageComponents,
6 [
7 qw(QuickCreate Quicksearch MyAdminQueues MySupportQueues MyReminders RefreshHomepage Dashboards SavedSearches FindUser MyAssets FindAsset)
8 ]
9 );
10
11 # Move UserAssets to the location you want on the User Summary page
12
13 Set(@UserSummaryPortlets, (qw/ExtraInfo CreateTicket UserAssets ActiveTickets InactiveTickets/));
14
15 # See the CustomFieldGroupings docs in RT_Config.pm for more info.
16 # http://bestpractical.com/docs/rt/latest/RT_Config.html
17
18 Set(%CustomFieldGroupings,
19 'RT::Asset' => {
20 'Asset Details' => ['Serial Number', 'Manufacturer', 'Type',
21 'Tracking Number'],
22 'Dates' => ['Support Expiration', 'Issue Date'],
23 },
24 );