From c003ac0505167cad55f2a2ede63d371576484b2c Mon Sep 17 00:00:00 2001 From: Andrew Watkins Date: Fri, 10 Mar 2017 14:25:09 -0800 Subject: [PATCH] Remove warnings --- ui/src/admin/actions/index.js | 6 ------ 1 file changed, 6 deletions(-) diff --git a/ui/src/admin/actions/index.js b/ui/src/admin/actions/index.js index c3caf83c6..eb77e26cd 100644 --- a/ui/src/admin/actions/index.js +++ b/ui/src/admin/actions/index.js @@ -217,12 +217,6 @@ export const updateUserPermissionsAsync = (user, permissions) => async (dispatch } export const updateUserRolesAsync = (user, roles) => async (dispatch) => { - console.log('The backend for this is not hooked up yet') - console.log('Once it is go into admin/actions/index and delete these lines') - console.log('user to update: ', user) - console.log('to be updated with these roles: ', roles) - return - try { await updateUserAJAX(user.links.self, roles, user.permissions) dispatch(publishNotification('success', 'User roles updated'))