mirror of
https://git.jami.net/savoirfairelinux/jami-daemon.git
synced 2025-08-12 22:09:25 +08:00
[#2006] Add getConfList method over dbus
Conference list is filled after receiving conferenceChanged signals
This commit is contained in:
@ -131,8 +131,19 @@ CallManager::detachParticipant (const std::string& callID)
|
||||
Manager::instance().detachParticipant(callID);
|
||||
}
|
||||
|
||||
std::map< std::string, std::string >
|
||||
CallManager::getConferenceDetails (const std::string& callID)
|
||||
{
|
||||
_debug ("CallManager::getCallDetails received\n");
|
||||
return Manager::instance().getConferenceDetails (callID);
|
||||
}
|
||||
|
||||
|
||||
std::vector< std::string >
|
||||
CallManager::getConferenceList (void)
|
||||
{
|
||||
_debug("CallManager::getConferenceList\n");
|
||||
return Manager::instance().getConferenceList();
|
||||
}
|
||||
|
||||
void
|
||||
CallManager::setRecording (const std::string& callID)
|
||||
|
Reference in New Issue
Block a user