/* This file is part of Telegram Desktop, the official desktop application for the Telegram messaging service. For license and copyright information please follow this link: https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL */ #include "dialogs/suggestions/suggestion.h" namespace Dialogs::TopBarSuggestions { std::vector AllSpecs() { auto result = std::vector(); result.push_back(MakeBirthdayContactsSpec()); result.push_back(MakeBirthdaySetupSpec()); result.push_back(MakeCustomPromoSpec()); result.push_back(MakeGiftAuctionsSpec()); result.push_back(MakeLowCreditsSubsSpec()); result.push_back(MakePremiumGraceSpec()); result.push_back(MakePremiumOfferSpec()); result.push_back(MakeUnreviewedAuthSpec()); return result; } } // namespace Dialogs::TopBarSuggestions