Creates an unencrypted group chat.
(context: &Context, name: &str)
| 3543 | |
| 3544 | /// Creates an unencrypted group chat. |
| 3545 | pub async fn create_group_unencrypted(context: &Context, name: &str) -> Result<ChatId> { |
| 3546 | create_group_ex(context, Sync, String::new(), name).await |
| 3547 | } |
| 3548 | |
| 3549 | /// Creates a group chat. |
| 3550 | /// |