Blame view
sources/apps/notify/ajax/getNotifications.php
250 Bytes
|
42e4f8d60
|
1 2 3 4 5 6 7 8 9 10 11 |
<?php
OCP\JSON::checkLoggedIn();
OCP\JSON::checkAppEnabled("notify");
if(isset($_POST["count"])) {
$count = (int)$_POST["count"];
} else {
//$count = 10;
//FIXME
$count = null;
}
OCP\JSON::encodedPrint(OC_Notify::getNotifications(null, $count));
|