diff options
author | Angelo Naselli <anaselli@linux.it> | 2014-10-12 00:06:03 +0200 |
---|---|---|
committer | Angelo Naselli <anaselli@linux.it> | 2014-10-12 00:06:03 +0200 |
commit | f237dadcc128c26758dee330a6a2df30b6f0811b (patch) | |
tree | 00ec8771ebc6e6c35f115db99e00f0c9178786f2 /lib/AdminPanel/Shared | |
parent | 634c11085639aa80caf6e546bd916b5c4f6e89ee (diff) | |
download | manatools-f237dadcc128c26758dee330a6a2df30b6f0811b.tar manatools-f237dadcc128c26758dee330a6a2df30b6f0811b.tar.gz manatools-f237dadcc128c26758dee330a6a2df30b6f0811b.tar.bz2 manatools-f237dadcc128c26758dee330a6a2df30b6f0811b.tar.xz manatools-f237dadcc128c26758dee330a6a2df30b6f0811b.zip |
fixed some of group management
Diffstat (limited to 'lib/AdminPanel/Shared')
-rw-r--r-- | lib/AdminPanel/Shared/Users.pm | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/lib/AdminPanel/Shared/Users.pm b/lib/AdminPanel/Shared/Users.pm index 85650634..237fee98 100644 --- a/lib/AdminPanel/Shared/Users.pm +++ b/lib/AdminPanel/Shared/Users.pm @@ -490,26 +490,6 @@ sub getGoups { return $self->ctx->GroupsEnumerate; } -#============================================================= - -=head2 getUsers - -=head3 OUTPUT - - $users: ARRAY reference containing all the users - -=head3 DESCRIPTION - - This method return the configured users - -=cut - -#============================================================= -sub getUsers { - my $self = shift; - - return $self->ctx->UsersEnumerate; -} #============================================================= @@ -814,6 +794,26 @@ sub getGroupsInfo { return $groupsInfo; } +#============================================================= + +=head2 getUsers + +=head3 OUTPUT + + $users: ARRAY reference containing all the users + +=head3 DESCRIPTION + + This method return the configured users + +=cut + +#============================================================= +sub getUsers { + my $self = shift; + + return $self->ctx->UsersEnumerate; +} #============================================================= |