--- lib/CAdmin/Model/User.pm 2008/03/10 00:19:52 4 +++ lib/A3C/Model/User.pm 2008/03/13 14:22:53 11 @@ -1,10 +1,10 @@ use strict; use warnings; -package CAdmin::Model::User; +package A3C::Model::User; use Jifty::DBI::Schema; -use CAdmin::Record schema { +use A3C::Record schema { column name => type is 'text', @@ -58,7 +58,7 @@ label is _('Fax broj'); column hrEduPersonUniqueNumber => - is mandatory, +# is mandatory, label is _('JMBG'); column hrEduPersonDateOfBirth => @@ -282,5 +282,10 @@ return ( 1, 'OK' ); } +sub current_user_can { + # FIXME no security for now :-) + return 1; +} + 1;