Merge branch 'idp' into 'v2.0'

Idp

See merge request lemonldap-ng/lemonldap-ng!70
This commit is contained in:
Christophe Maudoux 2019-04-10 09:15:38 +02:00
commit 508dd88230
2 changed files with 6 additions and 0 deletions

View File

@ -72,6 +72,9 @@ sub init {
oidcServiceMetaDataFrontChannelURI => 'frontLogout',
oidcServiceMetaDataBackChannelURI => 'backLogout',
);
@list = sort { $a->{name} cmp $b->{name} or
$a->{val} cmp $b->{val}
} @list;
$self->opList( [@list] );
return 1;
}

View File

@ -965,6 +965,9 @@ sub extractFormInfo {
icon => $img_src,
};
}
@list = sort { $a->{name} cmp $b->{name} or
$a->{val} cmp $b->{val}
} @list;
$req->data->{list} = \@list;
$req->data->{confirmRemember} = 1;