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

14 lines
254 B
PHP

<?php
namespace OCA\Documents;
// Init owncloud
\OCP\User::checkLoggedIn();
\OCP\JSON::checkAppEnabled('documents');
$sessions = Session::getAll();
if (!is_array($sessions)){
$sessions = array();
}
\OCP\JSON::success(array('sessions' => $sessions));