mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-09 06:28:14 +00:00
confbridge: Add support for disabling text messaging.
When in a conference bridge it may be necessary to have text messages disabled for specific participants or for all. This change adds a configuration option, "text_messaging", which can be used to enable or disable this on the user profile. By default existing behavior is preserved as it defaults to "yes". ASTERISK-28841 Change-Id: I30b5d9ae6f4803881d1ed9300590d405e392bc13
This commit is contained in:
committed by
Joshua Colp
parent
191f136260
commit
6cfc6ff53c
@@ -68,6 +68,7 @@ enum user_profile_flags {
|
||||
USER_OPT_ANNOUNCE_JOIN_LEAVE_REVIEW = (1 << 16), /*!< modifies ANNOUNCE_JOIN_LEAVE - user reviews the recording before continuing */
|
||||
USER_OPT_SEND_EVENTS = (1 << 17), /*!< Send text message events to users */
|
||||
USER_OPT_ECHO_EVENTS = (1 << 18), /*!< Send events only to the admin(s) */
|
||||
USER_OPT_TEXT_MESSAGING = (1 << 19), /*!< Send text messages to the user */
|
||||
};
|
||||
|
||||
enum bridge_profile_flags {
|
||||
|
Reference in New Issue
Block a user