You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nextcloud-server/settings/ajax/changegroupname.php

24 lines
547 B

<?php
OCP\JSON::callCheck();
OCP\JSON::checkLoggedIn();
OCP\JSON::checkAdminUser();
$l=OC_L10N::get('settings');
$groupname = $_POST["groupname"];
// Return Success story
// TODO : make changes to the API to allow this.
// setGroupname doesnt exist yet.
if(OC_Group::setGroupname($groupname)) {
OCP\JSON::success(
array("data" => array(
"message" => $l->t('Group name has been changed.'),
"groupname" => $groupname,
)
)
);
} else {
OCP\JSON::error(array("data" => array( "message" => $l->t("Unable to change group name"))));
}