File size: 207 Bytes
1e92f2d |
1 2 3 4 5 6 |
import { shouldShowComments } from 'calypso/blocks/comments/helper';
export function shouldShowConversationFollowButton( post ) {
return post.site_ID && ! post.is_external && shouldShowComments( post );
}
|