How to make subqueues invisible to customer?

English! place to talk about development, programming and coding
Post Reply
rani+bandaru
Znuny newbie
Posts: 37
Joined: 10 Jun 2010, 11:33
Znuny Version: 2.2.7

How to make subqueues invisible to customer?

Post by rani+bandaru »

Hai
How can i make subqueues invisible to customers?Only the main queue should be visible to customer? Where i have to do the changes ?
Please someone guide me about this problem of mine.

Eg: Main queue: ITSupport
Subqueues: Antivirus installation
Backup
Application Change

For customers IT Support should only be visible.Subqueues should not be visible.

How to solve this?
crythias
Moderator
Posts: 10169
Joined: 04 May 2010, 18:38
Znuny Version: 5.0.x
Location: SouthWest Florida, USA
Contact:

Re: How to make subqueues invisible to customer?

Post by crythias »

Please post in the proper area. If you need help, put it in the help forum, not development.

Config Options: Ticket -> Frontend::Customer::Ticket::ViewNew

CustomerPanelOwnSelection:
Here you can insert the Queues, which the customer can select in the Customer-Interface.
OTRS 6.0.x (private/testing/public) on Linux with MySQL database.
Please edit your signature to include your OTRS version, Operating System, and database type.
Click Subscribe Topic below to get notifications. Consider amending your topic title to include [SOLVED] if it is so.
Need help? Before you ask
Mike_B
Moderator
Posts: 266
Joined: 12 Jan 2010, 18:16
Znuny Version: CVS HEAD

Re: How to make subqueues invisible to customer?

Post by Mike_B »

You can also use an ACL, as mentioned here http://wiki.otrs.org/index.php?title=Qu ... _Front_End

Code: Select all

$Self->{TicketAcl}->{'ACL-Customer-Queues'} = {
    Properties => {Frontend => {Action => ['CustomerTicketMessage'] }},
    PossibleNot => { Ticket => { Queue => [
        '[RegExp]::',               # this hides all sub-queues
    }
};
--
Mike
huntingbears.nl - @michielbeijen on Twitter
Post Reply