| 432 | } |
| 433 | |
| 434 | std::string ServiceConfig::GetProjectsPagePath( |
| 435 | std::string_view userSlug, AudiocomTrace trace) const |
| 436 | { |
| 437 | return Substitute( |
| 438 | "/{user_slug}/projects?" MTM_CAMPAIGN, |
| 439 | { |
| 440 | { "user_slug", userSlug }, |
| 441 | { "version_number", audacity::ToUTF8(AUDACITY_VERSION_STRING) }, |
| 442 | { "button_name", GetButtonName(trace) }, |
| 443 | }); |
| 444 | } |
| 445 | |
| 446 | std::string ServiceConfig::GetTaskPollUrl() const |
| 447 | { |
no test coverage detected