mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2026-08-06 11:52:58 +00:00
27 lines
848 B
C++
27 lines
848 B
C++
/*
|
|
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<Spec> AllSpecs() {
|
|
auto result = std::vector<Spec>();
|
|
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());
|
|
result.push_back(MakeUserpicSetupSpec());
|
|
return result;
|
|
}
|
|
|
|
} // namespace Dialogs::TopBarSuggestions
|