| 522 | } |
| 523 | |
| 524 | MsgId Forum::reserveCreatingId( |
| 525 | const QString &title, |
| 526 | int32 colorId, |
| 527 | DocumentId iconId) { |
| 528 | const auto result = owner().nextLocalMessageId(); |
| 529 | _creatingRootIds.emplace(result); |
| 530 | applyTopicAdded( |
| 531 | result, |
| 532 | title, |
| 533 | colorId, |
| 534 | iconId, |
| 535 | session().userPeerId(), |
| 536 | base::unixtime::now(), |
| 537 | true); |
| 538 | return result; |
| 539 | } |
| 540 | |
| 541 | ForumTopic *Forum::reserveNewBotTopic() { |
| 542 | const auto &colors = ForumTopicColorIds(); |
no test coverage detected