mirror of
https://github.com/discourse/discourse.git
synced 2025-05-22 04:31:10 +08:00
FEATURE: Hide Privacy Policy and TOS topics (#18533)
* FEATURE: Hide Privacy Policy and TOS topics As a way to simplify new sites this change will hide the privacy policy and the TOS topics from the topic list. They can still be accessed and edited though. * add tests
This commit is contained in:
@ -438,6 +438,9 @@ class TopicQuery
|
||||
|
||||
topics = topics.to_a
|
||||
|
||||
# These don't need to be shown in the topic list
|
||||
topics = topics.reject { |t| [SiteSetting.privacy_topic_id, SiteSetting.tos_topic_id].include?(t[:id]) }
|
||||
|
||||
if options[:preload_posters]
|
||||
user_ids = []
|
||||
topics.each do |ft|
|
||||
|
Reference in New Issue
Block a user