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