forked from organicmaps/organicmaps
[android] Set new mobile front catalog api version
This commit is contained in:
parent
c8fdc4fda9
commit
c796a1342f
3 changed files with 3 additions and 3 deletions
|
@ -327,7 +327,7 @@ std::string BookmarkCatalog::GetWebEditorUrl(std::string const & serverId,
|
|||
|
||||
std::string BookmarkCatalog::GetFrontendUrl(UTM utm) const
|
||||
{
|
||||
return InjectUTM(kCatalogFrontendServer + languages::GetCurrentNorm() + "/v2/mobilefront/", utm);
|
||||
return InjectUTM(kCatalogFrontendServer + languages::GetCurrentNorm() + "/v3/mobilefront/", utm);
|
||||
}
|
||||
|
||||
void BookmarkCatalog::RequestTagGroups(std::string const & language,
|
||||
|
|
|
@ -17,7 +17,7 @@ namespace
|
|||
{
|
||||
auto constexpr kTipsCount = static_cast<uint8_t>(onboarding::Tip::Type::Count);
|
||||
|
||||
std::string const kBaseUrl = "/v2/mobilefront/";
|
||||
std::string const kBaseUrl = "/v3/mobilefront/";
|
||||
std::array<std::string, kTipsCount> const kTipsLinks = {
|
||||
InjectUTM(kBaseUrl, UTM::DiscoverCatalogOnboarding),
|
||||
InjectUTM(kBaseUrl + "search/?tag=181", UTM::FreeSamplesOnboading),
|
||||
|
|
|
@ -167,7 +167,7 @@ std::string GetCityCatalogueUrl(std::string const & baseUrl, std::string const &
|
|||
|
||||
ASSERT_EQUAL(baseUrl.back(), '/', ());
|
||||
|
||||
return baseUrl + "v2/mobilefront/city/" + ToSignedId(id);
|
||||
return baseUrl + "v3/mobilefront/city/" + ToSignedId(id);
|
||||
}
|
||||
|
||||
void GetPromoGalleryImpl(std::string const & url, platform::HttpClient::Headers const & headers,
|
||||
|
|
Loading…
Add table
Reference in a new issue