Help for this page

Select Code to Download


  1. or download this
            ldap_server_options:
              timeout: 30
              onerror: warn
    
  2. or download this
                my $user     = $c->req->params->{user}
            and my $password = $c->req->params->{password}
    # Becomes...
               my $user = $c->request->body_params->{user}
       and my $password = $c->request->body_params->{password}