We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3570bb3 + 87b3788 commit e446a00Copy full SHA for e446a00
OpenAPI/LearningHub.Nhs.OpenApi/Controllers/UserController.cs
@@ -298,6 +298,12 @@ private List<Dictionary<string, object>> MenuItems(NavigationModel model)
298
{ "visible", model.ShowBrowseCatalogues },
299
},
300
new Dictionary<string, object>
301
+ {
302
+ { "title", "My learning" },
303
+ { "url", this.learningHubConfig.MyLearningUrl },
304
+ { "visible", model.ShowMyLearning },
305
+ },
306
+ new Dictionary<string, object>
307
{
308
{ "title", "My contributions" },
309
{ "url", this.learningHubConfig.MyContributionsUrl },
@@ -310,12 +316,6 @@ private List<Dictionary<string, object>> MenuItems(NavigationModel model)
310
316
{ "visible", model.ShowMyBookmarks },
311
317
312
318
313
- {
314
- { "title", "My learning" },
315
- { "url", this.learningHubConfig.MyLearningUrl },
- { "visible", model.ShowMyLearning },
- },
- new Dictionary<string, object>
319
320
{ "title", "Help" },
321
{ "url", this.learningHubConfig.HelpUrl },
0 commit comments