FIX: Only show override options to admins

This commit is contained in:
romanrizzi 2019-05-27 13:45:54 -03:00
parent abe8142038
commit deea8b59bc
1 changed files with 5 additions and 0 deletions

View File

@ -0,0 +1,5 @@
export default {
shouldRender(args, component) {
return component.currentUser && component.currentUser.get("staff");
}
};