Add OAuth2 Wrapper for auto-protected apps

This commit is contained in:
Xavier 2019-04-23 06:25:53 +02:00
parent 06a7c97fd8
commit e5f6112994
2 changed files with 14 additions and 0 deletions

View File

@ -36,6 +36,7 @@ lib/Lemonldap/NG/Handler/PSGI.pm
lib/Lemonldap/NG/Handler/PSGI/AuthBasic.pm
lib/Lemonldap/NG/Handler/PSGI/CDA.pm
lib/Lemonldap/NG/Handler/PSGI/Main.pm
lib/Lemonldap/NG/Handler/PSGI/OAuth2.pm
lib/Lemonldap/NG/Handler/PSGI/Router.pm
lib/Lemonldap/NG/Handler/PSGI/ServiceToken.pm
lib/Lemonldap/NG/Handler/PSGI/Try.pm

View File

@ -0,0 +1,13 @@
# LLNG wrapper class to enable OAuth2 handler with FastCGI handler
#
# See https://lemonldap-ng.org/documentation/latest/handlerarch
package Lemonldap::NG::Handler::PSGI::OAuth2;
use strict;
use base 'Lemonldap::NG::Handler::Lib::OAuth2',
'Lemonldap::NG::Handler::PSGI::Main';
our $VERSION = '2.0.4';
1;