Creates an encrypted group chat.
(context: &Context, name: &str)
| 3538 | |
| 3539 | /// Creates an encrypted group chat. |
| 3540 | pub async fn create_group(context: &Context, name: &str) -> Result<ChatId> { |
| 3541 | create_group_ex(context, Sync, create_id(), name).await |
| 3542 | } |
| 3543 | |
| 3544 | /// Creates an unencrypted group chat. |
| 3545 | pub async fn create_group_unencrypted(context: &Context, name: &str) -> Result<ChatId> { |