Merge pull request #2787 from cpradio/add-visible-status

Add visible/invisible status for Advanced Users
This commit is contained in:
Sam
2014-09-12 10:02:08 +10:00

View File

@ -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