You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@allura.apache.org by br...@apache.org on 2018/09/18 16:00:58 UTC

allura git commit: [#8229] Personal Dashboard - Move activity section to the top in dashboard and profile

Repository: allura
Updated Branches:
  refs/heads/master 02363216a -> c3bc5d1d6


[#8229] Personal Dashboard - Move activity section to the top in dashboard and profile


Project: http://git-wip-us.apache.org/repos/asf/allura/repo
Commit: http://git-wip-us.apache.org/repos/asf/allura/commit/c3bc5d1d
Tree: http://git-wip-us.apache.org/repos/asf/allura/tree/c3bc5d1d
Diff: http://git-wip-us.apache.org/repos/asf/allura/diff/c3bc5d1d

Branch: refs/heads/master
Commit: c3bc5d1d68bf8c50b0c4323c45122cc43dde630c
Parents: 0236321
Author: deshani <de...@gmail.com>
Authored: Sun Sep 16 23:56:57 2018 +0530
Committer: Dave Brondsema <da...@brondsema.net>
Committed: Tue Sep 18 11:51:07 2018 -0400

----------------------------------------------------------------------
 Allura/development.ini | 5 ++++-
 Allura/setup.py        | 2 +-
 2 files changed, 5 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/allura/blob/c3bc5d1d/Allura/development.ini
----------------------------------------------------------------------
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_storage.ldap.fields.display_name = cn
 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

http://git-wip-us.apache.org/repos/asf/allura/blob/c3bc5d1d/Allura/setup.py
----------------------------------------------------------------------
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 @@ setup(
     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