mirror of
https://github.com/wassname/talk.git
synced 2026-08-17 11:27:52 +08:00
* feat: support blue color in message * feat: Show message when comment is in review * feat: handle non-visible comment status * test: add feature test for handling invisible comment status * fix: apply review * chore: better comment :-) * Update isVisible.ts
6 lines
189 B
TypeScript
6 lines
189 B
TypeScript
// TODO: use generated schema types.
|
|
const inReviewStatuses = ["PREMOD", "SYSTEM_WITHHELD"];
|
|
export default function isInReview(status: any) {
|
|
return inReviewStatuses.includes(status);
|
|
}
|