# איך מנהלים מוצאים פוסטים מצונזרים / האם יש ספירה של מילים מצונזרות למשתמש?

**URL:** https://meta.discourse.org/t/how-do-admins-find-censored-posts-is-there-a-count-of-censored-words-per-user/258172
**Category:** Support
**Tags:** watched-words
**Created:** [15 במרץ,‏ 2023,‏ 2:28am UTC](https://meta.discourse.org/t/how-do-admins-find-censored-posts-is-there-a-count-of-censored-words-per-user/258172 "2023-03-15T02:28:07Z")
**Posts on this page:** 1
**Showing post:** 2

<div class="post-metadata">

### Author: ![Nesha](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/nesha/32/268340_2.png) [@Nesha](https://meta.discourse.org/u/Nesha)
#### Post date: [15 במרץ,‏ 2023,‏ 3:11am UTC](https://meta.discourse.org/t/how-do-admins-find-censored-posts-is-there-a-count-of-censored-words-per-user/258172/2 "2023-03-15T03:11:45Z")

</div>

Or from another angle, **is it possible to use advanced search filters to list censored or flagged posts**?

And yes, we did our search first:

> [@How to search/filter untagged topics](https://meta.discourse.org/t/how-to-search-filter-untagged-topics/119641):
>
> I’m looking to use the search API to find all tags that match a string but have no tags. Is this possible? My hope is that this would work similar to in:solved ([How to search and filter solved/unsolved topics?](https://meta.discourse.org/t/how-to-search-and-filter-solved-unsolved-topics/34538)). More generally, is there a list of all such search terms? (Happy to look at code if someone could provide a pointer.) Alternatively, I could use a filter more like [Filter topics by tag in common with "top", "read", "bookmarks" and "posted" filters](https://meta.discourse.org/t/filter-topics-by-tag-in-common-with-top-read-bookmarks-and-posted-filters/48671) but it’s unclear how that works togeth…

We compiled our own list of what (kinda) works:

## More cool tips for listing topics

List all **archived** topics:  
[https://datalabcommonstrial.discourse.group/latest?status=archived](https://datalabcommonstrial.discourse.group/latest?status=archived)

List all **closed** topics:  
[https://datalabcommonstrial.discourse.group/latest?status=closed](https://datalabcommonstrial.discourse.group/latest?status=closed)

List all **deleted** topics:  
[https://datalabcommonstrial.discourse.group/latest?status=deleted](https://datalabcommonstrial.discourse.group/latest?status=deleted)

List all **bumped** topics:  
[https://datalabcommonstrial.discourse.group/latest?status=bumped](https://datalabcommonstrial.discourse.group/latest?status=bumped)

List all **deferred** topics:  
[https://datalabcommonstrial.discourse.group/latest?status=deferred](https://datalabcommonstrial.discourse.group/latest?status=deferred)

List all **unlisted** topics:  
[https://datalabcommonstrial.discourse.group/latest?status=unlisted](https://datalabcommonstrial.discourse.group/latest?status=unlisted)

List all **assigned** topics:  
[https://datalabcommonstrial.discourse.group/latest?status=assigned](https://datalabcommonstrial.discourse.group/latest?status=assigned)

List all **unanswered** topics:  
[https://datalabcommonstrial.discourse.group/latest?max\_posts=1](https://datalabcommonstrial.discourse.group/latest?max_posts=1)

? visible or invisible?

**More** :

> [@Search a topic by it's current status](https://meta.discourse.org/t/search-a-topic-by-its-current-status/176609/1):
>
> Iwould like to review which topics we currently have pinned, but i can’t find a way to filter on pinned topics. The same goes for archived topics which I want to review to see if they should get deleted

This can be used in the **Search box** :  
You can do this in search with `in:pinned` and `status:archived`

**Even more:**

[How to search/filter untagged topics](https://meta.discourse.org/t/how-to-search-filter-untagged-topics/119641)

advanced\_filter(/^status:open$/) do |posts|  
advanced\_filter(/^status:closed$/) do |posts|  
advanced\_filter(/^status:archived$/) do |posts|  
advanced\_filter(/^status:noreplies$/) do |posts|  
advanced\_filter(/^status:single\_user$/) do |posts|  
advanced\_filter(/^in:first|^f$/) do |posts|  
advanced\_filter(/^in:pinned$/) do |posts|  
advanced\_filter(/^in:unpinned$/) do |posts|  
advanced\_filter(/^in:(likes|bookmarks)$/) do |posts, match|  
advanced\_filter(/^in:posted$/) do |posts|  
advanced\_filter(/^in:seen$/) do |posts|  
advanced\_filter(/^in:unseen$/) do |posts|  
advanced\_filter(/^in:wiki$/) do |posts, match|  
advanced\_filter(/^posts\_count:(\d+)$/) do |posts, match|  
advanced\_filter(/^min\_post\_count:(\d+)$/) do |posts, match|  
advanced\_filter(/^badge:(._)$/) do |posts, match|  
advanced\_filter(/^with:images$/) do |posts|  
advanced\_filter(/^#([\p{L}0-9-:=]+)$/) do |posts, match|  
advanced\_filter(/^group:(.+)$/) do |posts, match|  
advanced\_filter(/^user:(.+)$/) do |posts, match|  
advanced\_filter(/^@([a-zA-Z0-9\_-.]+)$/) do |posts, match|  
advanced\_filter(/^before:(._)$/) do |posts, match|  
advanced\_filter(/^after:(.\*)$/) do |posts, match|  
advanced\_filter(/^tags?:([\p{L}0-9,-_+]+)$/) do |posts, match|  
advanced\_filter(/^-tags?:([\p{L}0-9,-_+]+)$/) do |posts, match|  
advanced\_filter(/^filetypes?:([a-zA-Z0-9,-\_]+)$/) do |posts, match|

---

_[View the full topic](https://meta.discourse.org/t/how-do-admins-find-censored-posts-is-there-a-count-of-censored-words-per-user/258172)._
