WIP(teams): add some analytics, remove extraneous logic

This commit is contained in:
Sabe Jones
2021-06-02 15:16:10 -05:00
committed by SabreCat
parent 221dd7a81e
commit d53813adc7
4 changed files with 27 additions and 10 deletions

View File

@@ -1053,10 +1053,6 @@ export default {
}
if (this.isOpenTask) return false;
if (this.task.group.assignedUsers.indexOf(this.user._id) !== -1) return false;
if (
this.task.group.assignedUsers.length > 0
&& this.task.group.assignedUsers.indexOf(this.user._id) === -1
) return true;
}
return true;
},