[SOLVED] ACLs in web interface is not working

Moderator: crythias

Locked
th13fp45s
Znuny newbie
Posts: 27
Joined: 14 May 2012, 16:22
Znuny Version: 3.3.x
Real Name: Alexandre Muzzio

[SOLVED] ACLs in web interface is not working

Post by th13fp45s »

Hi,

The ACL below works if I put it on Config.pm, but it doesn't work if I try config it in web interface, please, what I am doing wrong?

ACL in Config.pm:

Code: Select all

$Self->{TicketAcl}->{'100-Example-ACL'} = {
    # match properties
    Properties => {
        # current ticket match properties
        Ticket => {
            Queue => ['Nivel1'],
            Priority => ['5 very high'],
        }
    },
    # return possible options (white list)
    Possible => {
        # possible ticket options (white list)
        Ticket => {
            Queue => ['Nivel2'],
        },
    },
};
ACL config in web interface:
otrsACL.png
You do not have the required permissions to view the files attached to this post.
Last edited by th13fp45s on 18 Jan 2016, 22:19, edited 1 time in total.
skullz
Znuny superhero
Posts: 658
Joined: 24 Feb 2012, 03:58
Znuny Version: LTS and Features
Real Name: Mo Azfar
Location: Kuala Lumpur, MY
Contact:

Re: ACLs in web interface is not working

Post by skullz »

Properties => Ticket => Queue => Novel1

OR

Properties => Queue => Name => Novel1

good luck
My Github
OTRS CE/LTS Discord Channel
Cant Update Package Anymore ? Check This

Professional OTRS, Znuny & OTOBO services: efflux.de/en
Free and premium add-ons: English
th13fp45s
Znuny newbie
Posts: 27
Joined: 14 May 2012, 16:22
Znuny Version: 3.3.x
Real Name: Alexandre Muzzio

[SOLVED] Re: ACLs in web interface is not working

Post by th13fp45s »

Thanks! It worked!
Locked