From b9d3b3a1a779c3beb3402bdb3902597e2de0d734 Mon Sep 17 00:00:00 2001 From: Tyler Renelle Date: Fri, 15 Nov 2013 20:06:18 -0800 Subject: [PATCH] admin: refresh contrib list when saving a member --- public/js/controllers/adminCtrl.js | 1 + 1 file changed, 1 insertion(+) diff --git a/public/js/controllers/adminCtrl.js b/public/js/controllers/adminCtrl.js index c9fe8c4492..5145d338c8 100644 --- a/public/js/controllers/adminCtrl.js +++ b/public/js/controllers/adminCtrl.js @@ -13,6 +13,7 @@ habitrpg.controller("AdminCtrl", ['$scope', '$rootScope', 'User', 'Notification' Notification.text("User updated"); $scope.profile = undefined; $scope._uuid = undefined; + $scope.contributors = Contributor.query(); }) } $scope.contributors = Contributor.query();