lemonldap-ng/lemonldap-ng-handler/t/custom.pm
2020-11-16 17:51:01 +01:00

16 lines
345 B
Perl

package My;
sub accessToTrace {
my $hash = shift;
my $custom = $hash->{custom};
my $req = $hash->{req};
my $vhost = $hash->{vhost};
my $custom = $hash->{custom};
my $params = $hash->{params};
my $session = $hash->{session};
return "$custom alias $params->[0]_$params->[1]:$session->{groups}";
}
1;