1
0
mirror of https://github.com/ansible/awx.git synced 2024-10-30 22:21:13 +03:00

Remove console.log

This commit is contained in:
mabashian 2018-08-28 16:14:53 -04:00
parent 1408200927
commit 148daec49b

View File

@ -29,7 +29,6 @@ export default ['$scope', '$location', '$stateParams', 'OrgAdminLookup',
Rest.setUrl(GetBasePath('users') + $rootScope.current_user.id + '/roles/?role_field=notification_admin_role');
Rest.get()
.then(({data}) => {
console.log(data);
$scope.isNotificationAdmin = (data.count && data.count > 0);
});