module RongCloud::Services::MessagePriority
Public Instance Methods
add_chatroom_message_priority(object_name)
click to toggle source
# File lib/rong_cloud/services/message_priority.rb, line 7 def add_chatroom_message_priority(object_name) request("/chatroom/message/priority/add", objectName: object_name) end
add_chatroom_message_whitelist(object_names)
click to toggle source
# File lib/rong_cloud/services/message_priority.rb, line 19 def add_chatroom_message_whitelist(object_names) request("/chatroom/whitelist/add", objectnames: object_names) end
chatroom_message_priorities()
click to toggle source
# File lib/rong_cloud/services/message_priority.rb, line 15 def chatroom_message_priorities request("/chatroom/message/priority/query") end
chatroom_message_whitelist()
click to toggle source
# File lib/rong_cloud/services/message_priority.rb, line 27 def chatroom_message_whitelist request("/chatroom/whitelist/query") end
remove_chatroom_message_priority(object_name)
click to toggle source
# File lib/rong_cloud/services/message_priority.rb, line 11 def remove_chatroom_message_priority(object_name) request("/chatroom/message/priority/remove", objectName: object_name) end
remove_chatroom_message_whitelist(object_names)
click to toggle source
# File lib/rong_cloud/services/message_priority.rb, line 23 def remove_chatroom_message_whitelist(object_names) request("/chatroom/whitelist/delete", objectnames: object_names) end