%::myconfig mit sinnvollen Standardwerten vorbelegen
[kivitendo-erp.git] / SL / Dispatcher / AuthHandler / None.pm
1 package SL::Dispatcher::AuthHandler::None;
2
3 use strict;
4
5 use parent qw(Rose::Object);
6
7 sub handle {
8   %::myconfig = User->get_default_myconfig;
9   return 1;
10 }
11
12 1;