Collections\Controller\Api::updateGroups PHP Method

updateGroups() public method

public updateGroups ( )
    public function updateGroups()
    {
        $groups = $this->param("groups", false);
        if ($groups !== false) {
            $this->app->memory->set("cockpit.collections.groups", $groups);
            return '{"success":true}';
        }
        return false;
    }