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
We had to upgrade to angular 1.6. The deprecated $http.get('/').success() function has been removed so that public/routes/circle.js is throwing and error.
We had to upgrade to angular 1.6. The deprecated $http.get('/').success() function has been removed so that public/routes/circle.js is throwing and error.
The fix was to replace line 31 with this:
$http.get('/api/circles/mine').then(function (response) { aclCallBack(response.data); });
The text was updated successfully, but these errors were encountered: