[#8229] Personal Dashboard - Move activity section to the top in dashboard and profile
diff --git a/Allura/development.ini b/Allura/development.ini
index 561c410..a6932d8 100644
--- a/Allura/development.ini
+++ b/Allura/development.ini
@@ -231,7 +231,10 @@
 user_prefs.maximum_claimed_emails = 20
 
 ; Control the order of sections on the user profile page
-;user_profile_sections.order = activity, personal-data, skills
+user_profile_sections.order = activity, personal-data, skills, social, tools, projects
+
+; Control the order of sections on the personal dashboard page
+personal_dashboard_sections.order = activity, tickets, merge_requests, projects
 
 ; Site admins will be the same as the admins of this project:
 site_admin_project = allura
diff --git a/Allura/setup.py b/Allura/setup.py
index 8eac602..56ca78a 100644
--- a/Allura/setup.py
+++ b/Allura/setup.py
@@ -126,7 +126,7 @@
     projects = allura.ext.personal_dashboard.dashboard_main:ProjectsSection
     tickets = allura.ext.personal_dashboard.dashboard_main:TicketsSection
     merge_requests = allura.ext.personal_dashboard.dashboard_main:MergeRequestsSection
-    followers = allura.ext.personal_dashboard.dashboard_main:ActivitySection
+    activity = allura.ext.personal_dashboard.dashboard_main:ActivitySection
 
     [allura.webhooks]
     repo-push = allura.webhooks:RepoPushWebhookSender