WIP - Append extractFormInfo step & AuthChoiceParam for AuthChoice (#1925)

This commit is contained in:
Christophe Maudoux 2019-09-09 23:18:53 +02:00
parent 14d82c4a79
commit c1af9e49f7
2 changed files with 2 additions and 1 deletions

View File

@ -94,6 +94,7 @@ sub createSession {
build_urlencoded(
user => $user,
password => $pwd,
lmAuth => '', # TODO
secret => $class->tsv->{cipher}->encrypt(time)
)
);

View File

@ -273,7 +273,7 @@ sub newAuthSession {
$req->data->{password} = $req->param('password');
$req->steps( [
@{ $self->p->beforeAuth },
qw(getUser authenticate setAuthSessionInfo),
qw(getUser extractFormInfo authenticate setAuthSessionInfo),
@{ $self->p->betweenAuthAndData },
$self->p->sessionData,
@{ $self->p->afterData },