# 主题提醒列表

**URL:** https://meta.discourse.org/t/list-of-topic-reminders/78728
**Category:** Support
**Created:** [2018年一月23日 07:43 UTC](https://meta.discourse.org/t/list-of-topic-reminders/78728 "2018-01-23T07:43:41Z")
**Posts on this page:** 9
**Page:** 1

<div class="post-metadata">

### Author: ![Ivan\_Rapekas](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/ivan_rapekas/32/248924_2.png) [@Ivan\_Rapekas](https://meta.discourse.org/u/Ivan_Rapekas)
#### Post date: [2018年一月23日 07:43 UTC](https://meta.discourse.org/t/list-of-topic-reminders/78728/1 "2018-01-23T07:43:41Z")

</div>

Hi, how can I find a list of my active reminders and reminders of other users (when I am admin)? For example, I set some reminders for topics and want to review them.

---

<div class="post-metadata">

### Author: ![HAWK](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/hawk/32/86627_2.png) [@HAWK](https://meta.discourse.org/u/HAWK)
#### Post date: [2018年一月23日 15:29 UTC](https://meta.discourse.org/t/list-of-topic-reminders/78728/2 "2018-01-23T15:29:58Z")

</div>

By reminders do you mean bookmarks? Or topic timers?

---

<div class="post-metadata">

### Author: ![Ivan\_Rapekas](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/ivan_rapekas/32/248924_2.png) [@Ivan\_Rapekas](https://meta.discourse.org/u/Ivan_Rapekas)
#### Post date: [2018年一月23日 22:06 UTC](https://meta.discourse.org/t/list-of-topic-reminders/78728/3 "2018-01-23T22:06:08Z")

</div>

I mean topic timers, sorry for unclear.

---

<div class="post-metadata">

### Author: ![Ivan\_Rapekas](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/ivan_rapekas/32/248924_2.png) [@Ivan\_Rapekas](https://meta.discourse.org/u/Ivan_Rapekas)
#### Post date: [2018年二月7日 19:13 UTC](https://meta.discourse.org/t/list-of-topic-reminders/78728/4 "2018-02-07T19:13:22Z")

</div>

List of topic reminders needs in case if I want to cancel some reminders. Users could watch or cancel their reminders. Staff could manage all reminders.

---

<div class="post-metadata">

### Author: ![wesochuck](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/wesochuck/32/108706_2.png) [@wesochuck](https://meta.discourse.org/u/wesochuck)
#### Post date: [2019年十二月6日 18:59 UTC](https://meta.discourse.org/t/list-of-topic-reminders/78728/5 "2019-12-06T18:59:11Z")

</div>

需要明确的是，目前确实没有方法可以获取所有设置了主题计时器的主题列表，对吗？

---

<div class="post-metadata">

### Author: ![tshenry](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/tshenry/32/119495_2.png) [@tshenry](https://meta.discourse.org/u/tshenry)
#### Post date: [2019年十二月6日 19:12 UTC](https://meta.discourse.org/t/list-of-topic-reminders/78728/6 "2019-12-06T19:12:03Z")

</div>

目前无法通过主用户界面实现，但你可以通过数据探索器完成：

```sql
-- [params]
-- user_id :username

SELECT topic_id
FROM topic_timers
WHERE status_type = 5
  AND user_id = :username
  AND deleted_at IS NULL

```

编辑：@wesochuck 我已更新查询，确保同时忽略已过期的和手动删除的计时器。虽然 `execute_at` 能够捕获设置为未来日期的提醒，但它也会包含那些在到期前被手动删除的提醒。我想这并不理想。

---

<div class="post-metadata">

### Author: ![wesochuck](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/wesochuck/32/108706_2.png) [@wesochuck](https://meta.discourse.org/u/wesochuck)
#### Post date: [2019年十二月6日 19:16 UTC](https://meta.discourse.org/t/list-of-topic-reminders/78728/7 "2019-12-06T19:16:06Z")

</div>

谢谢，这样可以。我还添加了 `and execute_at > CURRENT_DATE`，这样我只会获取未来设置的记录。

---

<div class="post-metadata">

### Author: ![system](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/system/32/443519_2.png) [@system](https://meta.discourse.org/u/system)
#### Post date: [2023年九月16日 02:18 UTC](https://meta.discourse.org/t/list-of-topic-reminders/78728/8 "2023-09-16T02:18:02Z")

</div>



---

<div class="post-metadata">

### Author: ![JammyDodger](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/jammydodger/32/254611_2.png) [@JammyDodger](https://meta.discourse.org/u/JammyDodger)
#### Post date: [2023年九月16日 05:02 UTC](https://meta.discourse.org/t/list-of-topic-reminders/78728/9 "2023-09-16T05:02:48Z")

</div>


