Fix NPE when app specific tokens are not enabled

This commit is contained in:
Joseph Schorr 2018-01-26 13:18:32 -05:00
parent 6d2e18fa78
commit 8714ad6fe3

View file

@ -3,9 +3,9 @@
* in the sidebar) and provides helper methods for working with them. * in the sidebar) and provides helper methods for working with them.
*/ */
angular.module('quay').factory('NotificationService', angular.module('quay').factory('NotificationService',
['$rootScope', '$interval', 'UserService', 'ApiService', 'StringBuilderService', 'PlanService', 'UserService', 'Config', '$location', 'VulnerabilityService', ['$rootScope', '$interval', 'UserService', 'ApiService', 'StringBuilderService', 'PlanService', 'UserService', 'Features', 'Config', '$location', 'VulnerabilityService',
function($rootScope, $interval, UserService, ApiService, StringBuilderService, PlanService, UserService, Config, $location, VulnerabilityService) { function($rootScope, $interval, UserService, ApiService, StringBuilderService, PlanService, UserService, Features, Config, $location, VulnerabilityService) {
var notificationService = { var notificationService = {
'user': null, 'user': null,
'notifications': [], 'notifications': [],
@ -274,14 +274,15 @@ function($rootScope, $interval, UserService, ApiService, StringBuilderService, P
notificationService.notificationClasses = notificationService.getClasses(notificationService.notifications); notificationService.notificationClasses = notificationService.getClasses(notificationService.notifications);
}); });
var params = { if (Features.APP_SPECIFIC_TOKENS) {
'expiring': true var params = {
}; 'expiring': true
ApiService.listAppTokens(null, params).then(function(resp) { };
notificationService.expiringAppTokens = resp['tokens']; ApiService.listAppTokens(null, params).then(function(resp) {
}); notificationService.expiringAppTokens = resp['tokens'];
});
}
}; };
notificationService.reset = function() { notificationService.reset = function() {
$interval.cancel(pollTimerHandle); $interval.cancel(pollTimerHandle);
pollTimerHandle = $interval(notificationService.update, 5 * 60 * 1000 /* five minutes */); pollTimerHandle = $interval(notificationService.update, 5 * 60 * 1000 /* five minutes */);