Revision 6c21fd13
Von Moritz Bunkus vor fast 12 Jahren hinzugefügt
SL/Dispatcher/AuthHandler/Admin.pm | ||
---|---|---|
8 | 8 |
sub handle { |
9 | 9 |
%::myconfig = (); |
10 | 10 |
|
11 |
return 1 if $::auth->get_api_token_cookie; |
|
11 | 12 |
return 1 if $::form->{'{AUTH}admin_password'} && ($::auth->authenticate_root($::form->{'{AUTH}admin_password'}) == $::auth->OK()); |
12 | 13 |
return 1 if !$::form->{'{AUTH}admin_password'} && ($::auth->authenticate_root($::auth->get_session_value('admin_password')) == $::auth->OK()); |
13 | 14 |
|
Auch abrufbar als: Unified diff
Automatische Authentifizierung bestehender Sessions über Session-ID + API-Token
Wird für CRM-Menü benötigt.