mirror of
https://github.com/discourse/discourse.git
synced 2025-02-06 03:18:23 +00:00
Merge pull request #2787 from cpradio/add-visible-status
Add visible/invisible status for Advanced Users
This commit is contained in:
commit
f275d93d6c
@ -288,6 +288,10 @@ class TopicQuery
|
||||
result = result.where('topics.closed')
|
||||
when 'archived'
|
||||
result = result.where('topics.archived')
|
||||
when 'visible'
|
||||
result = result.where('topics.visible')
|
||||
when 'invisible'
|
||||
result = result.where('NOT topics.visible')
|
||||
end
|
||||
end
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user