| 117 | } |
| 118 | |
| 119 | [[nodiscard]] Data::GiftCodeLink MakeGiftCodeLink( |
| 120 | not_null<Main::Session*> session, |
| 121 | const QString &slug) { |
| 122 | const auto path = u"giftcode/"_q + slug; |
| 123 | return { |
| 124 | session->createInternalLink(path), |
| 125 | session->createInternalLinkFull(path), |
| 126 | }; |
| 127 | } |
| 128 | |
| 129 | [[nodiscard]] TextWithEntities FormatValuePrice( |
| 130 | int64 price, |
no test coverage detected