mirror of
https://git.jami.net/savoirfairelinux/jami-daemon.git
synced 2025-08-12 22:09:25 +08:00
[#2006] Add hold/unhold conference dbus messages
This commit is contained in:
@ -138,6 +138,20 @@ CallManager::detachParticipant (const std::string& callID)
|
||||
Manager::instance().detachParticipant(callID);
|
||||
}
|
||||
|
||||
void
|
||||
CallManager::holdConference (const std::string& confID)
|
||||
{
|
||||
_debug ("CallManager::holdConference received %s\n", confID.c_str());
|
||||
Manager::instance().holdConference(confID);
|
||||
}
|
||||
|
||||
void
|
||||
CallManager::unHoldConference (const std::string& confID)
|
||||
{
|
||||
_debug ("CallManager::unHoldConference received %s\n", confID.c_str());
|
||||
Manager::instance().unHoldConference(confID);
|
||||
}
|
||||
|
||||
std::map< std::string, std::string >
|
||||
CallManager::getConferenceDetails (const std::string& callID)
|
||||
{
|
||||
|
Reference in New Issue
Block a user