Skip to content

Commit

Permalink
Fix visualization of user preferences for analyst user role (#3940)
Browse files Browse the repository at this point in the history
  • Loading branch information
evilaliv3 committed Jan 9, 2024
1 parent 169e582 commit f2bdc56
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions client/app/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -356,6 +356,16 @@ var GL = angular.module("GL", [
resources: fetchResources("analyst", ["preferences"])
}
}).
when("/analyst/preferences", {
templateUrl: "views/partials/preferences.html",
controller: "PreferencesCtrl",
header_title: "Preferences",
sidebar: "views/analyst/sidebar.html",
resolve: {
access: requireAuth("analyst"),
resources: fetchResources("analyst", ["preferences"])
}
}).
when("/analyst/statistics", {
templateUrl: "views/analyst/statistics.html",
controller: "StatisticsCtrl",
Expand Down

0 comments on commit f2bdc56

Please sign in to comment.