aboutsummaryrefslogtreecommitdiff
path: root/mod/beechat/actions/leave_groupchat.php
diff options
context:
space:
mode:
Diffstat (limited to 'mod/beechat/actions/leave_groupchat.php')
-rw-r--r--mod/beechat/actions/leave_groupchat.php12
1 files changed, 12 insertions, 0 deletions
diff --git a/mod/beechat/actions/leave_groupchat.php b/mod/beechat/actions/leave_groupchat.php
new file mode 100644
index 000000000..e04ab8846
--- /dev/null
+++ b/mod/beechat/actions/leave_groupchat.php
@@ -0,0 +1,12 @@
+<?php
+
+$user = elgg_get_logged_in_user_entity();
+$group = get_entity(get_input('group_guid'));
+
+if ($user && $group) {
+ if (check_entity_relationship($user->guid, 'groupchat', $group->guid))
+ remove_entity_relationship($user->guid, 'groupchat', $group->guid);
+}
+error_log("leave ok");
+echo "OK";
+?>