You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: csp/gitprojectsettings.csp
+33Lines changed: 33 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -151,6 +151,18 @@ body {
151
151
}
152
152
set i = i+1
153
153
}
154
+
155
+
set i = 1
156
+
set contexts = []
157
+
158
+
while ( $Data(%request.Data("favNamespace",i)) ){
159
+
if ($Get(%request.Data("favNamespace",i)) '= "") {
160
+
do contexts.%Push($Get(%request.Data("favNamespace",i)))
161
+
}
162
+
set i = i+1
163
+
}
164
+
165
+
set settings.favoriteNamespaces = contexts
154
166
}
155
167
do settings.%Save()
156
168
}
@@ -591,6 +603,27 @@ body {
591
603
</div> -->
592
604
</div>
593
605
606
+
<div class="form-group row mb-3">
607
+
<label for="addToFav" class="offset-sm-1 col-sm-3 col-form-label" data-toggle="tooltip" data-placement="top" title="Favorite namespaces for user to add link on Home page.">Favorite Namespaces</label>
0 commit comments