Kernel::WebApp::Controller::API::Role::HandlesFormFilterValues

NAME

Kernel::WebApp::Controller::API::Role::HandlesFormFilterValues – Check endpoint ACL permission.

PUBLIC INTERFACE

Consume this role to prepare form values, that are needed for the dynamic field filters.

FormFilterValues()

Prepare form filter values, that can be used by the dynamic field database search backend.

    my %Result = $Self->FormFilterValues(
        FormValues     => $Self->param('FormValues'),
        CustomerUserID => $Self->AuthenticatedCustomerUserLogin(),
    );

Result:

    %Result = (
        SLAID          => '...',
        TicketID       => '...',
        CustomerUserID => '...',
        QueueID        => '...',
        TypeID         => '...',
        CustomerID     => '...',
        StateID        => '...',
        Subject        => '...',
        Dest           => '...',
        PriorityID     => '...',
        ServiceID      => '...'
    );
Scroll to Top