Prevent deleting the static page doc topics

This commit is contained in:
Neil Lalonde
2014-08-13 17:03:45 -04:00
parent 578d4ac5f4
commit 5caf72510c
2 changed files with 16 additions and 1 deletions
+2 -1
View File
@@ -41,7 +41,8 @@ module TopicGuardian
def can_delete_topic?(topic)
!topic.trashed? &&
is_staff? &&
!(Category.exists?(topic_id: topic.id))
!(Category.exists?(topic_id: topic.id)) &&
!Discourse.static_doc_topic_ids.include?(topic.id)
end
def can_reply_as_new_topic?(topic)