Fix documentation link for Google integration (#4472)

* Fix documentation link for Google integration

* Fix documentation link for Google integration (test update)

* Update lib/plausible_web/templates/site/settings_search_console.html.heex

---------

Co-authored-by: ruslandoga <doga.ruslan@gmail.com>
Co-authored-by: Adrian Gruntkowski <adrian.gruntkowski@gmail.com>
This commit is contained in:
Joris Drenth 2024-09-02 21:19:43 +02:00 committed by GitHub
parent 979764d010
commit 49ff00252e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -118,7 +118,7 @@
<p class="text-gray-900 dark:text-gray-200"> <p class="text-gray-900 dark:text-gray-200">
An extra step is needed to set up your <%= Plausible.product_name() %> for the Google Search Console integration. An extra step is needed to set up your <%= Plausible.product_name() %> for the Google Search Console integration.
Find instructions <%= link("here", Find instructions <%= link("here",
to: "https://plausible.io/docs/self-hosting-configuration#google-search-integration", to: "https://github.com/plausible/community-edition#google-integration",
class: "text-indigo-500" class: "text-indigo-500"
) %> ) %>
</p> </p>

View File

@ -838,7 +838,7 @@ defmodule PlausibleWeb.SiteControllerTest do
resp = html_response(conn, 200) resp = html_response(conn, 200)
assert resp =~ "An extra step is needed" assert resp =~ "An extra step is needed"
assert resp =~ "Google Search Console integration" assert resp =~ "Google Search Console integration"
assert resp =~ "self-hosting-configuration" assert resp =~ "google-integration"
end end
end end