lemonldap-ng/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/API/Nginx.pm

13 lines
215 B
Perl
Raw Normal View History

package Lemonldap::NG::Handler::API::Nginx;
2016-01-30 13:26:14 +01:00
use strict;
2015-12-18 10:31:36 +01:00
our $VERSION = '1.9.0';
2016-01-30 13:26:14 +01:00
use base 'Lemonldap::NG::Handler::API::PSGI';
sub uri {
2016-01-30 13:26:14 +01:00
return $Lemonldap::NG::Handler::API::PSGI::request->original_uri;
}
1;