Files
talk/client/coral-admin/src/utils/comment.js
T
2017-07-27 21:44:29 +07:00

10 lines
282 B
JavaScript

export function getCommentType(comment) {
let commentType = '';
if (comment.status === 'PREMOD') {
commentType = 'premod';
} else if (comment.actions && comment.actions.some((a) => a.__typename === 'FlagAction')) {
commentType = 'flagged';
}
return commentType;
}