mirror of
https://github.com/pierre42100/ComunicAPI
synced 2025-06-19 16:45:17 +00:00
Can get pending calls of a user
This commit is contained in:
@ -68,6 +68,22 @@ class CallsController {
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the next pending call
|
||||
*
|
||||
* @url POST /calls/nextPending
|
||||
*/
|
||||
public function GetNextPendingCall(){
|
||||
user_login_required();
|
||||
|
||||
//Get the next pending call for the user
|
||||
$call = components()->calls->getNextPendingForUser(userID, TRUE);
|
||||
|
||||
if(!$call->isValid())
|
||||
return array("notice" => "No pending call.");
|
||||
|
||||
return self::CallInformationToAPI($call);
|
||||
}
|
||||
|
||||
/**
|
||||
* Turn a CallsConfig object into an API entry
|
||||
|
Reference in New Issue
Block a user