diff --git a/app/views/admin/overview/index.html.erb b/app/views/admin/overview/index.html.erb index 041d04d83..8f2ac1492 100644 --- a/app/views/admin/overview/index.html.erb +++ b/app/views/admin/overview/index.html.erb @@ -7,15 +7,33 @@

Welcome Checklist

Here are a few things we recommend doing now that you're using Forem!

+
    -
  1. Set up and configure your Forem under <%= link_to "Config", admin_config_path, "data-action": "click->ahoy#trackOverviewLink" %>
  2. -
  3. <%= link_to "Invite people", admin_invitations_path, "data-action": "click->ahoy#trackOverviewLink" %> to join your Forem
  4. -
  5. <%= link_to "Update your Forem tags", admin_tags_path, "data-action": "click->ahoy#trackOverviewLink" %>
  6. -
  7. <%= link_to "Create pages", admin_pages_path, "data-action": "click->ahoy#trackOverviewLink" %> and <%= link_to "sort them in the navigation sidebar", admin_navigation_links_path, "data-action": "click->ahoy#trackOverviewLink" %>
  8. -
  9. Read the Quick Start Guide
  10. -
  11. <%= link_to "Set up a Welcome Thread", admin_welcome_index_path, "data-action": "click->ahoy#trackOverviewLink" %>
  12. -
  13. Browse the Forem Admin Guide
  14. -
  15. Join forem.dev to learn from fellow Forem creators.
  16. +
  17. + Fully review the + Forem Admin Documentation + and the latest Forem + Quick Start Guide +
  18. +
  19. + + Set up and configure your Forem + + under <%= link_to "the Config section", admin_config_path, "data-action": "click->ahoy#trackOverviewLink" %> +
  20. +
  21. <%= link_to "Create a Welcome Thread", admin_welcome_index_path, "data-action": "click->ahoy#trackOverviewLink" %>
  22. +
  23. <%= link_to "Update and customize your Forem tags", admin_tags_path, "data-action": "click->ahoy#trackOverviewLink" %>
  24. +
  25. + <%= link_to "Create pages", admin_pages_path, "data-action": "click->ahoy#trackOverviewLink" %> + and + <%= link_to "sort them in the navigation sidebar", admin_navigation_links_path, "data-action": "click->ahoy#trackOverviewLink" %> +
  26. +
  27. + Set your Forem's access level + and + email settings +
  28. +
  29. Join forem.dev to learn from fellow Forem creators
Visit Forem Admin Guide diff --git a/spec/system/admin/admin_visits_overview_spec.rb b/spec/system/admin/admin_visits_overview_spec.rb index eed7d87df..799487aa6 100644 --- a/spec/system/admin/admin_visits_overview_spec.rb +++ b/spec/system/admin/admin_visits_overview_spec.rb @@ -1,6 +1,6 @@ require "rails_helper" -RSpec.describe "Admin visits the overview page", type: :system, js: true do +RSpec.describe "Admin visits overview page", type: :system, js: true do let(:super_admin) { create(:user, :super_admin) } before do @@ -9,6 +9,6 @@ RSpec.describe "Admin visits the overview page", type: :system, js: true do end it "tracks link clicks" do - expect { click_link("Invite people") }.to change { Ahoy::Event.count }.by 1 + expect { click_link("Forem Admin Documentation") }.to change { Ahoy::Event.count }.by 1 end end