This repository has been archived on 2025-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
hymenobacterdotinfo/app/utils/user-can-add.js
2015-07-04 11:34:31 -07:00

3 lines
88 B
JavaScript

export default function userCanAdd(role) {
return (role === 'W') || (role === 'A');
}