# 설정에 표시가 되어 있음에도 댓글만 링크됩니다

**URL:** <https://meta.discourse.org/t/comments-are-only-being-linked-to-despite-settings-to-show-them/319343>\
**Category:** WordPress\
**Created:** [7월 30, 2024, 9:26오후 UTC](https://meta.discourse.org/t/comments-are-only-being-linked-to-despite-settings-to-show-them/319343 "2024-07-30T21:26:33Z")\
**Posts on this page:** 1\
**Showing post:** 9

<div class="post-metadata">

**Author:** ![angus](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/angus/32/341715_2.png) [@angus](https://meta.discourse.org/u/angus)\
**Post date:** [8월 2, 2024, 7:25오전 UTC](https://meta.discourse.org/t/comments-are-only-being-linked-to-despite-settings-to-show-them/319343/9 "2024-08-02T07:25:29Z")

</div>

문제를 해결해서 다행입니다.

> [@federatedRoss](#):
>
> 사용자가 10만 명을 훨씬 넘는데, 이를 일괄 처리할 수 있는 방법이 있을까요?

네, 방법이 있습니다. 다만 프로그래밍 방식으로 어떻게 할지 고민하기 전에, 먼저 커뮤니티 관리 관점에서 이 문제를 깊이 있게 고려해 보시길 권합니다. 아직 신뢰 수준(Trust Levels)에 대해 자세히 살펴보지 않았다면 아래 링크를 확인해 보세요.

> **[Understanding Discourse Trust Levels](https://blog.discourse.org/2018/06/understanding-discourse-trust-levels/)**
>
> The user trust system is a fundamental cornerstone of Discourse. Trust levels are a way of…

그리고 만약 저라면, 더 높은 신뢰 수준, 즉 3과 4를 부여하고 싶은 사용자 그룹(예: 이전 솔루션에 사용자 그룹화가 있었다면 그걸 참고할 수도 있겠죠)을 몇 개 식별할 것입니다. 이 과정은 대부분 수동으로 진행해야 합니다. 낮은 수준, 즉 1과 2의 경우엔 일괄 처리가 필요합니다. 아마도 이전 포럼의 사용자 메타데이터를 신뢰 수준 휴리스틱(heuristics)에 매핑하거나, 기본적인 규칙을 만들어 적용할 수 있을 것입니다. 코드 자체는 비교적 간단하지만, 10만 명 사용자를 위해 해당 토픽의 코드를 그대로 복사/붙여넣기하는 것은 권장하지 않습니다.

> [@Modify trust level for all users](https://meta.discourse.org/t/modify-trust-level-for-all-users/103628):
>
> Here’s an example of a [bulk operation](https://meta.discourse.org/t/administrative-bulk-operations/118349) to set the trust level to 2 for all users currently at trust level 0 or 1: This is slow, but properly triggers all side effects (group membership updates, badge grants, and logging). It may be preferred especially when you have fewer than 1000 users. Note: this does not skip users with manually locked trust levels — add .where(manual\_locked\_trust\_level: nil) to the query if you want to skip them. User.where(trust\_level: [0, 1]).find\_each do |user| user.…

더 넓게 보면, 디스코urses 호스팅 제공업체가 이 마이그레이션을 처리해 주는 것이 최선의 방법일 것입니다. 이들은 이러한 상황을 자주 다루며, 더 정교한 솔루션을 갖추고 있을 가능성이 높기 때문입니다.

---

_[View the full topic](https://meta.discourse.org/t/comments-are-only-being-linked-to-despite-settings-to-show-them/319343)._
