2018-12-10 20:43:41 +08:00

9 lines
247 B
JavaScript

import { helper } from '@ember/component/helper';
export function localProductHasPerm(params/*, hash*/) {
const user = params[0];
return user.admin || ['leli', 'chyxion'].includes(user.account);
}
export default helper(localProductHasPerm);