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-edit.js
2015-07-04 11:34:31 -07:00

5 lines
182 B
JavaScript

export default function userCanEdit(currentUser, author) {
let id = currentUser.id;
let role = currentUser.role;
return (role === 'W' && (+id === author)) || (role === 'A');
}