@@ -5,6 +5,7 @@ class ApplicationController < ActionController::Base
5
5
6
6
before_action :set_user , :set_nav_groups , :set_announcements , :set_locale
7
7
before_action :set_my_balances , only : [ :index , :new , :featured ]
8
+ before_action :set_featured_group
8
9
9
10
def set_locale
10
11
I18n . locale = ::Configuration . locale
@@ -17,13 +18,12 @@ def set_user
17
18
end
18
19
19
20
def set_nav_groups
20
- groups = sys_app_groups + pinned_app_group
21
21
#TODO: for AweSim, what if we added the shared apps here?
22
- if NavConfig . categories_whitelist?
23
- @nav_groups = OodAppGroup . select ( titles : NavConfig . categories , groups : groups )
24
- else
25
- @nav_groups = OodAppGroup . order ( titles : NavConfig . categories , groups : groups )
26
- end
22
+ @nav_groups = filter_groups ( sys_app_groups )
23
+ end
24
+
25
+ def set_featured_group
26
+ @featured_group = filter_groups ( pinned_app_group ) . first # 1 single group called 'Apps'
27
27
end
28
28
29
29
def sys_apps
@@ -80,4 +80,14 @@ def set_my_balances
80
80
::Configuration . balance_paths . each { |path | @my_balances += Balance . find ( path , OodSupport ::User . new . name ) }
81
81
@my_balances
82
82
end
83
+
84
+ private
85
+
86
+ def filter_groups ( groups )
87
+ if NavConfig . categories_whitelist?
88
+ OodAppGroup . select ( titles : NavConfig . categories , groups : groups )
89
+ else
90
+ OodAppGroup . order ( titles : NavConfig . categories , groups : groups )
91
+ end
92
+ end
83
93
end
0 commit comments