# Est-il possible de supprimer le lien/bouton « Mes fils » ?

**URL:** https://meta.discourse.org/t/is-it-possible-to-get-rid-of-the-my-threads-link-button/382483
**Category:** Support
**Tags:** chat
**Created:** [Septembre 12, 2025, 11:32 UTC](https://meta.discourse.org/t/is-it-possible-to-get-rid-of-the-my-threads-link-button/382483 "2025-09-12T23:32:20Z")
**Posts on this page:** 1
**Showing post:** 7

<div class="post-metadata">

### Author: ![Moin](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/moin/32/554653_2.png) [@Moin](https://meta.discourse.org/u/Moin)
#### Post date: [Septembre 13, 2025, 9:52 UTC](https://meta.discourse.org/t/is-it-possible-to-get-rid-of-the-my-threads-link-button/382483/7 "2025-09-13T09:52:46Z")

</div>

Existe-t-il des discussions où le mode filaire est toujours activé ? Avez-vous vérifié toutes les discussions DM ?

Vous pouvez utiliser cette requête d’explorateur de données pour trouver toutes vos discussions où le mode filaire est activé.

```sqlx
-- [params]
-- user_id :user_id 

WITH memberships AS (
  SELECT
    uccm.user_id,
    cc.id AS chat_channel_id,
    cc.type AS channel_type,
    cc.name AS channel_name,
    cc.description,
    cc.threading_enabled
  FROM
    user_chat_channel_memberships uccm
  JOIN
    chat_channels cc ON uccm.chat_channel_id = cc.id
  WHERE
    uccm.user_id = :user_id
    AND cc.threading_enabled = TRUE
)
SELECT
  m.chat_channel_id,
  COALESCE(
    NULLIF(m.channel_name, ''),
    (
      SELECT string_agg(u.username, ', ')
      FROM user_chat_channel_memberships uccm2
      JOIN users u ON uccm2.user_id = u.id
      WHERE uccm2.chat_channel_id = m.chat_channel_id
        AND uccm2.user_id <> m.user_id
    )
  ) AS sidebar_name,
   m.channel_type,
  ('/chat/c/-/' || m.chat_channel_id) AS chat_url
FROM memberships m
ORDER BY m.channel_type, sidebar_name

```

---

_[View the full topic](https://meta.discourse.org/t/is-it-possible-to-get-rid-of-the-my-threads-link-button/382483)._
