aboutsummaryrefslogtreecommitdiffstats
path: root/lib/AdminPanel/Shared
diff options
context:
space:
mode:
authorAngelo Naselli <anaselli@linux.it>2014-10-12 00:06:03 +0200
committerAngelo Naselli <anaselli@linux.it>2014-10-12 00:06:03 +0200
commitf237dadcc128c26758dee330a6a2df30b6f0811b (patch)
tree00ec8771ebc6e6c35f115db99e00f0c9178786f2 /lib/AdminPanel/Shared
parent634c11085639aa80caf6e546bd916b5c4f6e89ee (diff)
downloadcolin-keep-f237dadcc128c26758dee330a6a2df30b6f0811b.tar
colin-keep-f237dadcc128c26758dee330a6a2df30b6f0811b.tar.gz
colin-keep-f237dadcc128c26758dee330a6a2df30b6f0811b.tar.bz2
colin-keep-f237dadcc128c26758dee330a6a2df30b6f0811b.tar.xz
colin-keep-f237dadcc128c26758dee330a6a2df30b6f0811b.zip
fixed some of group management
Diffstat (limited to 'lib/AdminPanel/Shared')
-rw-r--r--lib/AdminPanel/Shared/Users.pm40
1 files changed, 20 insertions, 20 deletions
diff --git a/lib/AdminPanel/Shared/Users.pm b/lib/AdminPanel/Shared/Users.pm
index 8565063..237fee9 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;
+}
#=============================================================